implement report feature
This commit is contained in:
parent
4218ee6b7d
commit
d6d47f714a
31 changed files with 2472 additions and 8 deletions
32
app/templates/reports/email/report_message.txt
Normal file
32
app/templates/reports/email/report_message.txt
Normal file
|
@ -0,0 +1,32 @@
|
|||
{% load i18n %}{% autoescape off %}
|
||||
Hallo,
|
||||
|
||||
anbei erhalten Sie den angeforderten Report der Wildvogelhilfe Jena.
|
||||
|
||||
Report-Details:
|
||||
- Zeitraum: {{ date_from }} bis {{ date_to }}
|
||||
- Anzahl Patienten: {{ patient_count }}
|
||||
{% if filter_naturschutzbehörde and filter_jagdbehörde %}
|
||||
- Filter: Naturschutzbehörde und Jagdbehörde
|
||||
{% elif filter_naturschutzbehörde %}
|
||||
- Filter: Nur Naturschutzbehörde
|
||||
{% elif filter_jagdbehörde %}
|
||||
- Filter: Nur Jagdbehörde
|
||||
{% endif %}
|
||||
{% if automatic_report %}
|
||||
- Automatischer Report: {{ automatic_report.name }}
|
||||
{% else %}
|
||||
- Report-Typ: Manuell erstellt
|
||||
{% endif %}
|
||||
|
||||
Der Report liegt als CSV-Datei im Anhang bei und kann in Excel oder anderen Tabellenkalkulationsprogrammen geöffnet werden.
|
||||
|
||||
Bei Fragen zum Report wenden Sie sich bitte an das Team der Wildvogelhilfe Jena.
|
||||
|
||||
Mit freundlichen Grüßen
|
||||
Wildvogelhilfe Jena e.V.
|
||||
|
||||
---
|
||||
Diese E-Mail wurde automatisch generiert.
|
||||
Erstellt am: {{ created_at }}
|
||||
{% endautoescape %}
|
1
app/templates/reports/email/report_subject.txt
Normal file
1
app/templates/reports/email/report_subject.txt
Normal file
|
@ -0,0 +1 @@
|
|||
{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name %}Wildvogelhilfe Jena Report von {{ date_from }} bis {{ date_to }}{% endblocktrans %}{% endautoescape %}
|
Loading…
Add table
Add a link
Reference in a new issue