diff --git a/coderdojochi/templates/dashboard/session-check-in-mentors.html b/coderdojochi/templates/dashboard/session-check-in-mentors.html
index e799330c..1226d6f4 100644
--- a/coderdojochi/templates/dashboard/session-check-in-mentors.html
+++ b/coderdojochi/templates/dashboard/session-check-in-mentors.html
@@ -70,7 +70,9 @@
Attended Mentors {{ active_orders.count }}
|
- Mentor Name |
+ Name |
+ Email |
+ Phone |
Age |
Gender |
{% if active_session %}Action | {% endif %}
@@ -84,6 +86,8 @@ Attended Mentors {{ active_orders.count }}
|
{{ order.mentor.user.first_name }} {{ order.mentor.user.last_name }}
|
+ {{ order.mentor.user.email }} |
+ {{ order.mentor.phone }} |
- |
- |
{% if active_session %}
diff --git a/coderdojochi/templates/dashboard/session-check-in.html b/coderdojochi/templates/dashboard/session-check-in.html
index 85b9ce07..c4db1f80 100644
--- a/coderdojochi/templates/dashboard/session-check-in.html
+++ b/coderdojochi/templates/dashboard/session-check-in.html
@@ -186,7 +186,9 @@ Attended Students {{ active_orders.count }
|
Student Name |
Age |
- Guardian |
+ Guardian Name |
+ Guardian Email |
+ Guardian Phone |
School |
{% if not active_session %}Checkin Date{% endif %} |
# A |
@@ -215,6 +217,12 @@ Attended Students {{ active_orders.count }
{% endif %}
{% endif %}
+ |
+ {{ order.guardian.user.email }}
+ |
+
+ {{ order.guardian.phone }}
+ |
{{ order.student.school_name }}
|