| # |
- Date |
- Event |
+ Start Date |
+ Event Name |
Client |
Cost |
MIC |
@@ -40,8 +50,9 @@
danger
{% endif %}
">
- N{{ object.pk|stringformat:"05d" }} |
- {{ object.end_date }} |
+ N{{ object.pk|stringformat:"05d" }}
+ {{ object.get_status_display }} |
+ {{ object.start_date }} |
{{ object.name }} |
{% if object.organisation %}
@@ -52,11 +63,15 @@
|
{{ object.sum_total|floatformat:2 }} |
- {{ object.mic.initials }}
-
+ {% if object.mic %}
+ {{ object.mic.initials }}
+
+ {% else %}
+
+ {% endif %}
|
-
+
|
diff --git a/RIGS/templates/RIGS/invoice_list.html b/RIGS/templates/RIGS/invoice_list.html
index 26ddeb12..cb63b7f5 100644
--- a/RIGS/templates/RIGS/invoice_list.html
+++ b/RIGS/templates/RIGS/invoice_list.html
@@ -17,6 +17,8 @@
| # |
Event |
+ Client |
+ Event Date |
Invoice Date |
Balance |
|
@@ -26,7 +28,15 @@
{% for object in object_list %}
| {{ object.pk }} |
- N{{ object.event.pk|stringformat:"05d" }}: {{ object.event.name }} |
+ N{{ object.event.pk|stringformat:"05d" }}: {{ object.event.name }}
+ {{ object.event.get_status_display }} |
+
+ {% if object.organisation %}
+ {{ object.event.organisation.name }}
+ {% else %}
+ {{ object.event.person.name }}
+ {% endif %} |
+ {{ object.event.start_date }} |
{{ object.invoice_date }} |
{{ object.balance|floatformat:2 }} |
|