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

Workflow Dashboard

{{ comp_fws|intcomma }} Completed FireWorks as of {% now "Y-m-d, H:i (T)" %}
{% for wf in wf_info %} {% empty %} {% endfor %}
Newest Workflows
ID Name State
{{ wf.id }}
{{ wf.name }}
{% for fw in wf.fireworks %} {{fw.name}} {% endfor %}
{% include 'state.html' with states=wf.state %}
(no workflows in database)
{% for states, fw_info, wf_info in info %} {% endfor %}
Current Database Status
Fireworks Workflows
{% include 'state.html' %}
{{ fw_info|intcomma }}
{{ wf_info|intcomma }}
TOTAL
{{ tot_fws|intcomma }}
{{ tot_wfs|intcomma }}
{% endblock %}