{% extends "cabinet/base_cabinet.html" %} {% load cabinet_tags %} {% block title %}{{ report.title }}{% endblock %} {% block cabinet_content %}

{{ report.title }}

{{ report.summary }}

{{ report.period_label }}
{% if report.summary_cards %}
{% for card in report.summary_cards %}
{{ card.label }} {{ card.value }}
{% if card.icon %}{% endif %} {% if card.hint or card.trend_value %} {% if card.trend_value %}{{ card.trend_value }}{% endif %} {% if card.hint %}{{ card.hint }}{% endif %} {% endif %}
{% endfor %}
{% endif %} {% include "cabinet/reports/table.html" with table=report.table %} {% if report.chart %} {% include "cabinet/reports/chart.html" with chart=report.chart %} {% endif %}
{% endblock %}