{% extends "base.html" %} {% import '_macro.html' as macros %} {% block head %} Naev Ship Database {% endblock head %} {% block body %} {% for classes in shipList|dictsort %} {%- for class, ships in classes|batch(2) -%}

{{ class }}

{%- for ship in ships -%} {% if loop.index0 is even %}
{% else %}
{% endif %}

{{ ship.name }}

{{macros.shipImage(ship.gfx_comm, ship.name)}}
  • Price:
  • Speed:
  • Thrust:
  • Turn:
  • Mass:
  • Shield:
  • Armour:
  • Energy:
  • {{ ship.price }}
  • {{ ship.movement.speed }} m/s
  • {{ ship.movement.thrust }} kN/t
  • {{ ship.movement.turn }} o/s
  • {{ship.characteristics.mass}} t
  • {{ ship.health.shield }} MJ
  • {{ ship.health.armour }} MJ
  • {{ ship.health.energy }} MJ
Slots
    {%- for slottype in ship.slots|dictsort|reverse -%}
  • {{ slottype[0]|title }} ({{slottype[1]|count}})
  • {%- for slot in slottype[1] -%}
  • {%- endfor -%} {%- endfor -%}
{%- if ship.stats -%}
Stats
    {%- for stat in ship.stats|dictsort -%}
  • {{stat[0]|getStatsLabel}}: {{stat[1]}}%
  • {%- endfor -%}
{%- endif -%}
{% if loop.last %}
{% elif loop.index0 is odd%}
{% endif %} {%- endfor -%} {%- endfor -%} {% endfor %} {% endblock body %}