# HG changeset patch # User Lennard de Rijk # Date 1247440023 -7200 # Node ID 4fef5b98c67b6a29d8f126fc478ac2842e93fd36 # Parent f8b735c735632fd69c3eeb9bb05e758504ade052 Changed GradingRecord list templates to show more info. They now show wether or not a Mentor/Student eval has been found. diff -r f8b735c73563 -r 4fef5b98c67b app/soc/templates/soc/grading_record/list/heading.html --- a/app/soc/templates/soc/grading_record/list/heading.html Mon Jul 13 01:00:59 2009 +0200 +++ b/app/soc/templates/soc/grading_record/list/heading.html Mon Jul 13 01:07:03 2009 +0200 @@ -4,6 +4,8 @@ Organization Mentor Grade + Mentor Eval + Student Eval Locked Last Modified diff -r f8b735c73563 -r 4fef5b98c67b app/soc/templates/soc/grading_record/list/row.html --- a/app/soc/templates/soc/grading_record/list/row.html Mon Jul 13 01:00:59 2009 +0200 +++ b/app/soc/templates/soc/grading_record/list/row.html Mon Jul 13 01:07:03 2009 +0200 @@ -4,10 +4,26 @@ href="{{ list.redirect }}">{{ list.item.project.title }} -
{{ list.item.project.student.name }}
-
{{ list.item.project.scope.name }}
-
{{ list.item.project.mentor.name }}
-
{{ list.item.grade_decision }}
-
{{ list.item.locked }}
+
{{ list.item.project.student.name }}
+
{{ list.item.project.scope.name }}
+
{{ list.item.project.mentor.name }}
+
{{ list.item.grade_decision }}
+
+ {% if list.item.mentor_record %} + Yes + {% else %} + No + {% endif %} +
+ +
+ {% if list.item.student_record %} + Yes + {% else %} + No + {% endif %} +
+ +
{{ list.item.locked }}
{{ list.item.modified|date:"jS F Y H:i" }}