{% extends "admin/reports/base.html" %} {% load i18n %} {% block title %}{% trans "Report-Protokoll" %}{% endblock %} {% block content %}
{% 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 %}
{% for email in log.email_sent_to %}
{{ email }}
{% endfor %}
{% else %}
{% trans "Download" %}
{% endif %}
|
{% if log.email_sent_to %} {% trans "Gesendet" %} {% else %} {% trans "Heruntergeladen" %} {% endif %} |
{% trans "Erstellen Sie Ihren ersten Report über das Dashboard." %}
{% trans "Report erstellen" %}