{% extends "base.html" %} {% block title %} » Report Runs » {{run.id}} {% endblock %} {% block nav %} Report Runs » {{run.id}} {% endblock %} {% block content %} {% if request.method == "GET" and request.values.delete %}
Are you sure you want to delete this report run? Cancel
{% else %}
Monthly Duration Report
Date Created Created By Title State Delete Download Spreadsheet
{{run.date_created|hh_format}} {{run.creator}} {{run.title}} {{run.state}}
Download
{% for title in org_rows[0].data.titles %} {% endfor %} {% for org_row in org_rows %} {% for title in org_row.data.titles %} {% endfor %} {% endfor %}
Organisation Level
{{title}}
{{org_row.data['values'][title]}}
{% endif %} {% endblock %}