{% extends "base.html" %} {% block title %}FireWorks Dashboard{% endblock %} {% block content %} {% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}

Warning: {{ message }}

{% endfor %}
{% endif %} {% endwith %}

Workflow Dashboard

{% for wf in wf_info %} {% endfor %}
Newest Workflows
{{wf.state}} ID: {{ wf.id }}

{% for fw in wf.fireworks %} {% endfor %}
{% for state, fw_num, wf_num in state_nums %} {% endfor %}
Current Database Status
Fireworks Workflows
{{ state }}
{{ '{:,}'.format(fw_num) }}
{{ '{:,}'.format(wf_num) }}
TOTAL
{{ '{:,}'.format(tot_fws) }}
{{ '{:,}'.format(tot_wfs) }}

Summary Reports

Get a report of all jobs for the past:

For more reporting options, use the "lpad report --help" command line tool.

MongoDB Query:



{% endblock %}