diff options
author | maheshgudi | 2016-09-16 14:41:07 +0530 |
---|---|---|
committer | maheshgudi | 2016-09-16 14:41:07 +0530 |
commit | aa09318a4332575bfb309c430a9db88cd2b55537 (patch) | |
tree | d062677b9733c0f2221f70952e4b7b0681eca36f /yaksh/templates | |
parent | f84e689e4fc71aebf32facbcc2aef3955295f95d (diff) | |
download | online_test-aa09318a4332575bfb309c430a9db88cd2b55537.tar.gz online_test-aa09318a4332575bfb309c430a9db88cd2b55537.tar.bz2 online_test-aa09318a4332575bfb309c430a9db88cd2b55537.zip |
consistent indentation of 4 spaces in view_answerpaper.css and minor changes in grade_user.html
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/grade_user.html | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/yaksh/templates/yaksh/grade_user.html b/yaksh/templates/yaksh/grade_user.html index 7b79373..0e29512 100644 --- a/yaksh/templates/yaksh/grade_user.html +++ b/yaksh/templates/yaksh/grade_user.html @@ -5,7 +5,9 @@ {% block subtitle %} Grade User {% endblock %} {% block css %} - <link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/view_answerpaper.css" type="text/css" /> + <link rel="stylesheet" + href="{{ URL_ROOT }}/static/yaksh/css/view_answerpaper.css" + type="text/css" /> {% endblock %} {% block manage %} @@ -24,8 +26,9 @@ {% if course.get_quizzes %} <td> {% for quiz in course.get_quizzes %} - <li><a href = "{{URL_ROOT}}/exam/manage/gradeuser/{{quiz.id}}">{{quiz.description}}</a></li> - + <li><a href = "{{URL_ROOT}}/exam/manage/gradeuser/{{quiz.id}}"> + {{quiz.description}} + </a></li> {% endfor %} </td> {% else %} @@ -40,7 +43,8 @@ {%if users %} <div id = "student" class="span2"> {% for user in users %} - <p><a href = "{{URL_ROOT}}/exam/manage/gradeuser/{{quiz_id}}/{{user.user__id}}">{{user.user__first_name}} {{user.user__last_name}}</a></p> + <p><a href = "{{URL_ROOT}}/exam/manage/gradeuser/{{quiz_id}}/{{user.user__id}}"> + {{user.user__first_name}} {{user.user__last_name}}</a></p> {% endfor %} </div> {% endif %} @@ -177,7 +181,7 @@ Status : <b style="color: green;"> Passed </b><br/> name="q{{ question.id }}_marks" size="4" value="{{ answer.marks }}"><br><br> {% endwith %} - <hr> + <hr/> {% endfor %} {# for question, answers ... #} <h3>Teacher comments: </h3> |