{{ title }}

{% if year %}
Zeitraum: {% if month %} {{ '%02d'|format(month) }}/{{ year }} {% else %} {{ year }} {% endif %}
{% endif %}
Generiert: {{ generated_at|format_date('%d.%m.%Y %H:%M') }}
Gesamtsumme
{{ result.total_amount|format_amount }}
{{ result.documents_with_amount }} Dokumente mit Betrag
Dokumente
{{ result.document_count }}
{{ result.documents_without_amount }} ohne Betrag
Durchschnitt
{{ result.average_amount|format_amount }}
pro Dokument
Median
{{ result.median_amount|format_amount }}
Min: {{ result.min_amount|format_amount }}
{% if result.by_tag %}

Verteilung nach Tag

{% endif %} {% if result.by_category %}

Verteilung nach Kategorie

{% endif %} {% if result.by_month %}

Monatsverlauf

{% endif %} {% if result.by_correspondent %}

Top 10 Korrespondenten

{% endif %}
{% if result.by_tag %}

Nach Tag

{% for name, stats in result.by_tag.items() %} {% endfor %}
Tag Betrag Anteil Anzahl Verteilung
{{ name }} {{ stats.amount|format_amount }} {{ stats.percentage|format_percent }} {{ stats.count }}
{% endif %} {% if result.by_category %}

Nach Kategorie

{% for name, stats in result.by_category.items() %} {% endfor %}
Kategorie Betrag Anteil Anzahl Verteilung
{{ name }} {{ stats.amount|format_amount }} {{ stats.percentage|format_percent }} {{ stats.count }}
{% endif %} {% if result.by_month %}

Nach Monat

{% for month, stats in result.by_month.items() %} {% endfor %}
Monat Betrag Anzahl
{{ month }} {{ stats.amount|format_amount }} {{ stats.count }}
{% endif %} {% if result.by_correspondent %}

Nach Korrespondent

{% for name, stats in result.by_correspondent.items() %} {% endfor %}
Korrespondent Betrag Anteil Anzahl
{{ name }} {{ stats.amount|format_amount }} {{ stats.percentage|format_percent }} {{ stats.count }}
{% endif %} {% if result.top_items %}

Top 10 Einzelposten

{% for doc in result.top_items[:10] %} {% endfor %}
# Titel Datum Korrespondent Betrag
{{ loop.index }} {% if doc.web_url %} {{ doc.title }} {% else %} {{ doc.title }} {% endif %} {{ doc.effective_date|format_date }} {{ doc.correspondent or '-' }} {{ doc.betrag|format_amount }}
{% endif %} {% if comparison %}

Periodenvergleich: {{ comparison.period1.name }} vs {{ comparison.period2.name }}

{{ comparison.period1.name }}
{{ comparison.period1.total|format_amount }}
{{ comparison.period1.count }} Dokumente
{{ comparison.period2.name }}
{{ comparison.period2.total|format_amount }}
{{ comparison.period2.count }} Dokumente
Veränderung
{{ '%+.1f'|format(comparison.diff_percent) }}%
{{ comparison.diff_absolute|format_amount }}
{% for cat, data in comparison.category_comparison.items() %} {% endfor %}
Kategorie {{ comparison.period1.name }} {{ comparison.period2.name }} Differenz Veränderung
{{ cat }} {{ data.period1|format_amount }} {{ data.period2|format_amount }} {{ data.diff_absolute|format_amount }} {{ '%+.1f'|format(data.diff_percent) }}%
{% endif %}

Alle Dokumente ({{ result.document_count }})

{% for doc in result.documents %} {% endfor %}
Datum Titel Korrespondent Tags Betrag
{{ doc.effective_date|format_date }} {% if doc.web_url %} {{ doc.title }} {% else %} {{ doc.title }} {% endif %} {{ doc.correspondent or '-' }} {% for tag in doc.tags %} {{ tag }} {% endfor %} {{ doc.betrag|format_amount if doc.betrag else '-' }}