diff --git a/adm/templates/adm/adm_bills.html b/adm/templates/adm/adm_bills.html
index 6afd416..710ac96 100644
--- a/adm/templates/adm/adm_bills.html
+++ b/adm/templates/adm/adm_bills.html
@@ -16,7 +16,9 @@
| Agentur |
Rechnungsnummer |
- Erstellt am |
+ Rechnungsdatum |
+ Leistung Start |
+ Leistung Ende |
Betrag |
Status |
@@ -26,7 +28,9 @@
| {{ele.agency.name}} |
{{ele.billnumber}} |
- {{ele.billdate}} |
+ {{ele.billdate|date:"d.m.Y"}} |
+ {{ele.start|date:"d.m.Y"}} |
+ {{ele.end|date:"d.m.Y"}} |
{% loadFinalMoneyByAgency ele.agency as fm %}
{{fm|floatformat:2|intcomma}} €
diff --git a/dump.rdb b/dump.rdb
index 62e2df9..b22ea46 100644
Binary files a/dump.rdb and b/dump.rdb differ
|