From 542d867e16ea89bfb5eccc44313278011f0463dd Mon Sep 17 00:00:00 2001
From: prathamesh
Date: Thu, 17 Nov 2016 12:32:31 +0530
Subject: Improved Student Interface
Student test interface improved.
Made time-left component fixed at the top
Reset button for code question shifted inside the editor panel.
Reduced the empty space at the top and few improvement in look and feel.
---
yaksh/templates/base.html | 4 +-
yaksh/templates/yaksh/complete.html | 43 ++++++++++--------
yaksh/templates/yaksh/login.html | 27 +++++++++---
yaksh/templates/yaksh/question.html | 78 ++++++++++++++++++++-------------
yaksh/templates/yaksh/quit.html | 46 ++++++++++---------
yaksh/templates/yaksh/quizzes_user.html | 2 +
6 files changed, 124 insertions(+), 76 deletions(-)
(limited to 'yaksh/templates')
diff --git a/yaksh/templates/base.html b/yaksh/templates/base.html
index 00b0867..1609121 100644
--- a/yaksh/templates/base.html
+++ b/yaksh/templates/base.html
@@ -17,10 +17,12 @@
+
+
diff --git a/yaksh/templates/yaksh/complete.html b/yaksh/templates/yaksh/complete.html
index 4fe9aba..01d5bf6 100644
--- a/yaksh/templates/yaksh/complete.html
+++ b/yaksh/templates/yaksh/complete.html
@@ -4,25 +4,30 @@
{% block content %}
{% csrf_token %}
{% if paper.questions_answered.all or paper.questions_unanswered.all %}
-
Submitted Questions | -
- {% if paper.questions_answered.all %}
- {{ paper.questions_answered.all|join:", " }}
- {% else %}
- No Questions have been Submitted - {% endif %} - |
Unattempted Questions | -
- {% if paper.questions_unanswered.all %}
- {{ paper.questions_unanswered.all|join:", " }}
- {% else %}
- All Questions have been Submitted - {% endif %} - |
Question | +State | +
---|---|
{{ question.summary }} | +Attempted | + {% else %} +
{{ question }} | +Not Attempted | + {% endif %} +
Online Test Interface for conducting online programming quiz. +
Question Navigator
-Submitted Questions | -
- {% if paper.questions_answered.all %}
- {{ paper.questions_answered.all|join:", " }}
- {% else %}
- No Questions have been Submitted - {% endif %} - |
Unattempted Questions | -
- {% if paper.questions_unanswered.all %}
- {{ paper.questions_unanswered.all|join:", " }}
- {% else %}
- All Questions have been Submitted - {% endif %} - |
Question | +State | +
---|---|
{{ question.summary }} | +Attempted | + {% else %} +
{{ question }} | +Not Attempted | + {% endif %} +