{% extends "base.html" %} {% block title %}People{% endblock title %} {% block main %}

Star Wars People

{% set rows = data.people.json.results %} {% for row in rows %} {% endfor %}
Name Birth (Y) Gender Height Mass Eye Color Hair Color Skin Color Home world Films Species Starships Vehicles
{{row.name}} {{row.birth_year}} {{row.gender}} {{row.height}} {{row.mass}} {{row.eye_color}} {{row.hair_color}} {{row.skin_color}} homeworld {{row.films | length}} {{row.species | length}} {{row.starships | length}} {{row.vehicles | length}}
{% endblock main %}