diff options
author | CruiseDevice | 2019-02-13 15:50:00 +0530 |
---|---|---|
committer | CruiseDevice | 2019-02-18 16:45:17 +0530 |
commit | ed532c50d3f5c61ba3ce39d07c8c0c21e6c9c171 (patch) | |
tree | eef34dda8c184f7070aedbec402f7f9b00db030e /yaksh/templates | |
parent | b71b517173cac8b4f266f36d0cbc918551b3ee73 (diff) | |
download | online_test-ed532c50d3f5c61ba3ce39d07c8c0c21e6c9c171.tar.gz online_test-ed532c50d3f5c61ba3ce39d07c8c0c21e6c9c171.tar.bz2 online_test-ed532c50d3f5c61ba3ce39d07c8c0c21e6c9c171.zip |
Add Preview QuestionPaper button in Quiz view page
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/exam.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/yaksh/templates/exam.html b/yaksh/templates/exam.html index 29ad167..0b292bb 100644 --- a/yaksh/templates/exam.html +++ b/yaksh/templates/exam.html @@ -98,6 +98,15 @@ {% endfor %} </tbody> </table> + <br> + {% if user.profile.is_moderator %} + {% if quiz.questionpaper_set.get %} + <a href="{{URL_ROOT}}/exam/manage/preview_questionpaper/{{quiz.questionpaper_set.get.id}}" class="btn btn-primary active btn-xs" target="_blank"> + View Question Paper + </a> + <br> + {% endif %} + {% endif %} </div> <!--end of sidebar --> <a href="#sidebar" data-toggle="collapse" id="sidebaricon"><i class="fa fa-navicon fa-lg"></i></a> |