{% load string_formating %}
{{ report.title }}
{% if report.description %}
Description: {{ report.description }}
{% endif %}
Printed On: {% now "D, M j, Y" %} at {% now "g:i A" %}
Financially Accurate: {% if report.is_financially_accurate %}True{% else %}False{% endif %}
{% for argument, value in report_run_arguments_values.items %}
{{ argument|underscores_to_spaces|title }}: {{ value }}
{% endfor %}
{% for column in report.columns %} {% endfor %} {% for row in report.rows %} {% if row.span_all_columns %} {% else %} {% for cell in row.cells %} {% endfor %} {% endif %} {% endfor %}
{{ column.title }} {% if column.sub_title %}
{{ column.sub_title }}
{% endif %}
{% for cell in row.cells %} {{ cell.value|safe }} {% endfor %} {{ cell.value_verbose }} {% if cell.sub_value %}
{{ cell.sub_value_verbose }} {% endif %}