summaryrefslogtreecommitdiff
path: root/yaksh/templates/manage.html
diff options
context:
space:
mode:
authoradityacp2016-09-16 20:28:21 +0530
committeradityacp2016-09-16 20:28:21 +0530
commitbfd75a4b87339c5037ad2d412e45ee12b223dd02 (patch)
treeda62b336a5b5681c4b0878a72170ee8d9f0bf037 /yaksh/templates/manage.html
parent2efd65cb2dd276e1560c8993e13d9db95e6c8ba0 (diff)
parent5b2a6fe665a3add0916a255e5436841b820146ee (diff)
downloadonline_test-bfd75a4b87339c5037ad2d412e45ee12b223dd02.tar.gz
online_test-bfd75a4b87339c5037ad2d412e45ee12b223dd02.tar.bz2
online_test-bfd75a4b87339c5037ad2d412e45ee12b223dd02.zip
changed course template to view demo course
Diffstat (limited to 'yaksh/templates/manage.html')
-rw-r--r--yaksh/templates/manage.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/yaksh/templates/manage.html b/yaksh/templates/manage.html
index 2fd0f7a..b628a44 100644
--- a/yaksh/templates/manage.html
+++ b/yaksh/templates/manage.html
@@ -78,15 +78,15 @@
<h5>Click on the button given below to add a new course.</h5>
<button class="btn" type="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/add_course");'>Add New Course</button>
</center>
- {% if trial_quiz %}
+ {% if trial_paper %}
<h5/> You have trial papers.
<table class="bordered-table zebra-striped">
<form action="" method="post">
{% csrf_token %}
- {% for quiz in trial_quiz %}
+ {% for paper in trial_paper %}
<tr>
- <td> <input type = "checkbox" name="delete_quiz" value = {{quiz.id}}></input></td>
- <td> <a href="{{URL_ROOT}}/exam/manage/gradeuser/{{quiz.id}}">{{quiz.description}}</td>
+ <td> <input type = "checkbox" name="delete_paper" value = {{paper.id}}></input></td>
+ <td> <a href="{{URL_ROOT}}/exam/manage/gradeuser/{{paper.question_paper.quiz.id}}">{{paper.question_paper.quiz.description}}</td>
</tr>
{% endfor %}
</table>