{% extends "admin/reports/base.html" %} {% load i18n %} {% block title %}{% trans "Report-Protokoll" %}{% endblock %} {% block content %}

{% trans "Report-Protokoll" %}

{{ report_logs|length }} {% trans "Einträge" %}
{% if report_logs %}
{% for log in report_logs %} {% endfor %}
{% trans "Datum/Zeit" %} {% trans "Typ" %} {% trans "Name" %} {% trans "Zeitraum" %} {% trans "Anzahl Patienten" %} {% trans "E-Mail gesendet an" %} {% trans "Status" %} {% trans "Aktionen" %}
{{ log.created_at|date:"d.m.Y" }}
{{ log.created_at|time:"H:i" }}
{% if log.automatic_report %} {% trans "Automatisch" %} {% else %} {% trans "Manuell" %} {% endif %} {% if log.automatic_report %} {{ log.automatic_report.name }} {% else %} {% trans "Manueller Report" %} {% endif %}
{{ log.date_from|date:"d.m.Y" }}
{% trans "bis" %}
{{ log.date_to|date:"d.m.Y" }}
{{ log.patient_count }} {% if log.email_sent_to %} {% else %} {% trans "Download" %} {% endif %} {% if log.email_sent_to %} {% trans "Gesendet" %} {% else %} {% trans "Heruntergeladen" %} {% endif %}
{% if log.csv_file %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}

{% trans "Noch keine Reports erstellt" %}

{% trans "Erstellen Sie Ihren ersten Report über das Dashboard." %}

{% trans "Report erstellen" %}
{% endif %}
{% endblock %}