{% extends "base.html" %} {% load humanize %} {% block title %}Home{% endblock %} {% block content %}

{{ comp_fws|intcomma }} Completed FireWorks as of {% now "Y-m-d, H:i (T)" %}

Recent Activity

{% for ids, names, states in fw_info %} {% empty %} {% endfor %}
Newest Fireworks
ID Name State
{{ ids }}
{{ names }}
{{ states }}
(no fireworks in database)
{% for states, fw_info, wf_info in info %} {% endfor %}
Current Database Status
Fireworks Workflows
{{ states }}
{{ fw_info|intcomma }}
{{ wf_info|intcomma }}
TOTAL
{{ tot_fws|intcomma }}
{{ tot_wfs|intcomma }}
{% for ids, names, states in wf_info %} {% empty %} {% endfor %}
Newest Workflows
ID Name State
{{ ids }}
{{ names }}
{{ states }}
(no workflows in database)
{% endblock %}