{% extends "base.html" %} {% block title %}{{ state }} Fireworks Index{% endblock %} {% block content %}

{{ '{:,}'.format(fw_count) }} {{ state|lower }} Firework{{ fw_count|pluralize }}

{% if current_sorting_key == "created_on" and current_sorting_order == "ASCENDING" %} {% elif current_sorting_key == "created_on" and current_sorting_order == "DESCENDING" %} {% else %} {% endif %} {% if current_sorting_key == "updated_on" and current_sorting_order == "ASCENDING" %} {% elif current_sorting_key == "updated_on" and current_sorting_order == "DESCENDING" %} {% else %} {% endif %} {% for row in rows %} {% endfor %}
{{ state }} Fireworks
ID NameCreated On ▲Created On ▼Created OnUpdated On ▲Updated On ▼Updated On
{{ row.fw_id }}
{{ row.name }} {{ row.created_on }} {{ row.updated_on }}
{{ pagination.links|safe }} {% endblock %}