Attended Students {{ active_orders.count }
{% endif %}
{% endif %}
- |
- {{ order.guardian.user.email }}
- |
-
- {{ order.guardian.phone }}
- |
-
- {{ order.student.school_name }}
- |
+ {{ order.guardian.user.email }} |
+ {{ order.guardian.phone }} |
+ {{ order.student.school_name }} |
{% if active_session %}
{% if not order.check_in %}
@@ -253,20 +249,20 @@ Attended Students {{ active_orders.count }
{% endif %}
{% if active_session != True %}
-
+
No Shows {{ no_show_orders.count }}
-
+
|
- Student Name |
- Age |
- Guardian |
- Last Update Date |
- # A |
- # M |
+ Student Name |
+ Age |
+ Guardian |
+ Last Update Date |
+ #A |
+ #M |
@@ -291,7 +287,7 @@ No Shows {{ no_show_orders.count }}
{% endif %}
{% if inactive_orders.count %}
-
+
Cancelled Tickets {{ inactive_orders.count }}
@@ -299,24 +295,28 @@ Cancelled Tickets {{ inactive_orders.count
|
- Student Name |
- Age |
- Guardian |
- Cancelled Date |
- # A |
- # M |
+ Student Name |
+ Age |
+ Guardian |
+ Guardian Email |
+ Guardian Phone |
+ School |
+ Cancelled Date |
+ #A |
+ #M |
{% for order in inactive_orders %}
| {{ forloop.counter|stringformat:"02d" }} |
-
- {{ order.student.first_name }} {{ order.student.last_name }}
- |
+ {{ order.student.first_name }} {{ order.student.last_name }} |
{{ order.student | student_age:session.start_date }} |
{{ order.guardian.user.first_name }} {{ order.guardian.user.last_name }} |
- {{ order.updated_at }} |
+ {{ order.guardian.user.email }} |
+ {{ order.guardian.phone }} |
+ {{ order.student.school_name }} |
+ {{ order.updated_at }} |
{{ order.num_attended }} |
{{ order.num_missed }} |
diff --git a/fixtures/05-coderdojochi-mentororder.json b/fixtures/05-coderdojochi-mentororder.json
index 26dc6677..c6b7a0a8 100644
--- a/fixtures/05-coderdojochi-mentororder.json
+++ b/fixtures/05-coderdojochi-mentororder.json
@@ -4,7 +4,7 @@
"pk": 1,
"fields": {
"mentor": 1,
- "session": 1,
+ "session": 2,
"check_in": "2016-05-07T10:00:00-06:00",
"affiliate": "",
"order_number": "",
diff --git a/fixtures/05-coderdojochi-order.json b/fixtures/05-coderdojochi-order.json
index ac9977e0..c8cb8553 100644
--- a/fixtures/05-coderdojochi-order.json
+++ b/fixtures/05-coderdojochi-order.json
@@ -8,7 +8,6 @@
"student": 1,
"is_active": true,
"ip": "",
- "check_in": "2016-05-07T10:00:00-06:00",
"alternate_guardian": "",
"affiliate": "",
"order_number": "",
@@ -25,7 +24,7 @@
"guardian": 1,
"session": 2,
"student": 2,
- "is_active": true,
+ "is_active": false,
"ip": "",
"check_in": "2016-05-07T13:07:35-06:00",
"alternate_guardian": "",
|