# HG changeset patch # User Lennard de Rijk # Date 1247482014 -7200 # Node ID 0f25d9d2755664c113919e911bda8bd9e6a60e0d # Parent 0440ac4e5f344bffc475d4d66361a69dff6120ba Added template for editing GradingRecords. diff -r 0440ac4e5f34 -r 0f25d9d27556 app/soc/templates/soc/grading_record/edit.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/soc/templates/soc/grading_record/edit.html Mon Jul 13 12:46:54 2009 +0200 @@ -0,0 +1,62 @@ +{% 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 %} +

+

+{% block instructions %} + +{% endblock %} +

+ +{% if error_message %} +
{{ error_message|safe }}
+{% endif %} + +

+ + {% readonly_field_as_table_row entity.grading_survey_group.fields.name.label entity.grading_survey_group.name %} + {% readonly_field_as_table_row "Student Project Title" entity.project.title %} + {% readonly_field_as_table_row "Organization Name" entity.project.scope.name %} + {% readonly_field_as_table_row "Mentor Name" entity.project.mentor.name %} + {% readonly_field_as_table_row "Student Name" entity.project.student.name %} +
+

+ + +
+ + {% block form_table %} + {% as_table form %} + {% endblock %} +
+ + + + + + + + +
 
+ + + +
+
+

+ +{% endblock body %}