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

Star Wars Starships

{% set rows = data.starships.json.results %} {% for row in rows %} {% endfor %}
Name Model Manufacturer Class MGLT Passengers Crew Length Cost (credits) Capacity Consumables HyperDrive Rating Max ATM speed Films Pilots
{{row.name}} {{row.model}} {{row.manufacturer}} {{row.starship_class}} {{row.MGLT}} {{row.passengers}} {{row.crew}} {{row.length}} {{row.cost_in_credits}} {{row.cargo_capacity}} {{row.consumables}} {{row.hyperdrive_rating}} {{row.max_atmosphering_speed}} {{row.films | length}} {{row.pilots | length}}
{% endblock main %}