From feeb605573357fd8056f103b1043e192838bb23d Mon Sep 17 00:00:00 2001
From: maheshgudi
Date: Tue, 3 Jan 2017 15:21:30 +0530
Subject: MCQ/MCC choices HTML tags are rendered.
---
yaksh/templates/yaksh/grade_user.html | 2 +-
yaksh/templates/yaksh/question.html | 4 ++--
yaksh/templates/yaksh/user_data.html | 2 +-
yaksh/templates/yaksh/view_answerpaper.html | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
(limited to 'yaksh/templates')
diff --git a/yaksh/templates/yaksh/grade_user.html b/yaksh/templates/yaksh/grade_user.html
index 6fb8187..ec8c244 100644
--- a/yaksh/templates/yaksh/grade_user.html
+++ b/yaksh/templates/yaksh/grade_user.html
@@ -130,7 +130,7 @@ Status : Passed
{% if question.type == "mcq" or question.type == "mcc" %}
Choices:
{% for testcase in question.get_test_cases %}
-
{{ forloop.counter }}. {{ testcase.options }}
+
{{ forloop.counter }}. {{ testcase.options|safe }}
{% endfor %}
{% else %}
Test cases:
diff --git a/yaksh/templates/yaksh/question.html b/yaksh/templates/yaksh/question.html
index 8b2012c..ba64b63 100644
--- a/yaksh/templates/yaksh/question.html
+++ b/yaksh/templates/yaksh/question.html
@@ -173,7 +173,7 @@ function call_skip(url)
{% endif %}
{% for test_case in test_cases %}
- {{ test_case.options }}
+ {{ test_case.options|safe }}
{% endfor %}
{% endif %}
{% if question.type == "mcc" %}
@@ -189,7 +189,7 @@ function call_skip(url)
{% endif %}
{% for test_case in test_cases %}
- {{ test_case.options }}
+ {{ test_case.options|safe }}
{% endfor %}
{% endif %}
diff --git a/yaksh/templates/yaksh/user_data.html b/yaksh/templates/yaksh/user_data.html
index 856433d..9c11dd9 100644
--- a/yaksh/templates/yaksh/user_data.html
+++ b/yaksh/templates/yaksh/user_data.html
@@ -66,7 +66,7 @@ User IP address: {{ paper.user_ip }}
{% if question.type == "mcq" or question.type == "mcc" %}
Choices:
{% for testcase in question.get_test_cases %}
-
{{ forloop.counter }}. {{ testcase.options }}
+
{{ forloop.counter }}. {{ testcase.options|safe }}
{% endfor %}
{% else %}
Test cases:
diff --git a/yaksh/templates/yaksh/view_answerpaper.html b/yaksh/templates/yaksh/view_answerpaper.html
index 9dfbda0..8dec5b3 100644
--- a/yaksh/templates/yaksh/view_answerpaper.html
+++ b/yaksh/templates/yaksh/view_answerpaper.html
@@ -42,7 +42,7 @@
{% if question.type == "mcq" or question.type == "mcc" %}
Choices:
{% for testcase in question.get_test_cases %}
-
{{ forloop.counter }}. {{ testcase.options }}
+
{{ forloop.counter }}. {{ testcase.options|safe }}
{% endfor %}
{%endif%}
--
cgit
From 25eb8d10045e1af6ab7c282b8df0b008223be545 Mon Sep 17 00:00:00 2001
From: maheshgudi
Date: Tue, 3 Jan 2017 17:57:01 +0530
Subject: added completed and inprogress papers' status in monitor
---
yaksh/templates/yaksh/monitor.html | 9 +++++++++
1 file changed, 9 insertions(+)
(limited to 'yaksh/templates')
diff --git a/yaksh/templates/yaksh/monitor.html b/yaksh/templates/yaksh/monitor.html
index 7a3297b..0ad6401 100644
--- a/yaksh/templates/yaksh/monitor.html
+++ b/yaksh/templates/yaksh/monitor.html
@@ -1,4 +1,5 @@
{% extends "manage.html" %}
+{% load custom_filters %}
{% block pagetitle %} Quiz results {% endblock pagetitle %}
@@ -49,6 +50,14 @@ $(document).ready(function()
{% if papers %}
Number of papers: {{ papers|length }}
+{% completed papers as completed_papers %}
+ {# template tag used to get the count of completed papers #}
+ Papers completed: {{ completed_papers }}
+
+{% inprogress papers as inprogress_papers %}
+ {# template tag used to get the count of inprogress papers #}
+ Papers in progress: {{ inprogress_papers }}
+
Question Statisitics
Download CSV