app/soc/templates/soc/grading_survey_group/records.html
changeset 2612 216002ba6b86
child 2616 9321e100a7fb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/soc/templates/soc/grading_survey_group/records.html	Sun Jul 12 16:01:41 2009 +0200
@@ -0,0 +1,35 @@
+{% extends "soc/base.html" %}
+{% comment %}
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+{% endcomment %}
+{% load forms_helpers %}
+
+{% block body %}
+
+<p>
+  All records collected for this Grading Survey Group are shown on this page.
+</p>
+
+<p>
+  Collection Task last started: {{ entity.last_update_started|date:"jS F Y H:i"|default:"Never Started" }} <br />
+  Collection Task last completed: {{ entity.last_update_completed|date:"jS F Y H:i"|default:"Never Completed" }} <br />
+</p>
+
+{% for list_number in list.lists %}
+<p>
+{% include list.nextList %}
+</p>
+
+{% endfor %}
+
+{% endblock %}