diff options
author | ankitjavalkar | 2019-02-01 16:50:15 +0530 |
---|---|---|
committer | ankitjavalkar | 2019-02-04 19:04:10 +0530 |
commit | ed05c25abc3a09152c6cf5196034cfefb6ec4fa6 (patch) | |
tree | 2790eb87036b30293c3ebb7483614f9e105a6356 /yaksh/templates/exam.html | |
parent | cedceac0c7b64e2116b5cfd5ec9461fdff98842c (diff) | |
download | online_test-ed05c25abc3a09152c6cf5196034cfefb6ec4fa6.tar.gz online_test-ed05c25abc3a09152c6cf5196034cfefb6ec4fa6.tar.bz2 online_test-ed05c25abc3a09152c6cf5196034cfefb6ec4fa6.zip |
Make changes to View Module screen and Quiz screen interface for students
- Remove 'Units In This Module' section from View Module page
- Increase size of Question marks displayed during Quiz
- Change the Question Navigator colours so that Attempted Question number is more visible
- Remove footer in Quiz interface
- Adjust the logo in the Nav bar on Quit and Complete screen
Diffstat (limited to 'yaksh/templates/exam.html')
-rw-r--r-- | yaksh/templates/exam.html | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/yaksh/templates/exam.html b/yaksh/templates/exam.html index 29ad167..51c2eca 100644 --- a/yaksh/templates/exam.html +++ b/yaksh/templates/exam.html @@ -24,8 +24,7 @@ {% endif %} <span class="fa fa-power-off"></span></button></span> </form> - - </div> + </div> </div><!-- /.navbar --> </div><!-- /.container --> </nav><!-- /.navbar --> @@ -57,7 +56,7 @@ {% endif %} {% endif %} {% if qid in paper.get_questions_answered %} - <a class=" btn btn-outline-success " style="background-color:#B4B8BA;" href="#" data-toggle="tooltip" + <a class=" btn btn-outline-light " style="background-color:#B4B8BA;" href="#" data-toggle="tooltip" onclick="call_skip('{{ URL_ROOT }}/exam/{{ question.id }}/skip/{{ qid.id }}/{{ paper.attempt_number }}/{{ module.id }}/{{ paper.question_paper.id }}/{{course.id}}/')" title="{{ qid.description }}">{{ forloop.counter }}</a> {% endif %} @@ -112,26 +111,3 @@ </div> {% endblock %} - -{% block footer %} - <!--footer--> - <footer class="container-fluid yakshsidebarfooter text-center"> - <div class="row justify-content-center"> - <div class="col-sm-5 "> - {% if user %} - {% block info %} - <b>{{user.get_full_name|title}}</b> with Roll no. <b>{{user.profile.roll_number}}</b> is logged in as <b>{{user.username}}</b> - {% endblock %} - {% endif %} - </div> - <div class="col-sm-2"> - | - </div> - <div class="col-sm-4 text-left"> - <b>Any Queries?</b> Email : info@fossee.in - </div> - </div> - </footer> - <!--footer end--> -{% endblock %} - |