app/soc/templates/soc/grading_survey_group/records.html
author Lennard de Rijk <ljvderijk@gmail.com>
Mon, 13 Jul 2009 00:53:42 +0200
changeset 2616 9321e100a7fb
parent 2612 216002ba6b86
child 2623 9848682af610
permissions -rw-r--r--
Added buttons to start tasks to GradingSurveyGroup Record view. Also fixed an error in the GradingRecord row template.

{% 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>

{{ message }}

<form method="post">
  <table>
    <tr>
      <td>
        <input type="submit" name="update_records" value="Start Updating Records" style="font-weight: bold;">
      </td>
      <td>
        <input type="submit" name="update_projects" value="Update Projects with collected Grades" style="font-weight: bold;">
      </td>
    </tr>
  </table>
</form>

<p>
  Last Record Update started: {{ entity.last_update_started|date:"jS F Y H:i"|default:"Never Started" }} <br />
  Last Record Update completed: {{ entity.last_update_complete|date:"jS F Y H:i"|default:"Never Completed" }} <br />
</p>

{% for list_number in list.lists %}
<p>
{% include list.nextList %}
</p>

{% endfor %}

{% endblock %}