From d7c3a232e843cce5dcf6d1e80c3498f24e7dfda2 Mon Sep 17 00:00:00 2001 From: aditya Date: Fri, 22 May 2020 20:54:42 +0530 Subject: Change question template - Update tinymce editor with additional plugins - Fix issue in question file upload for empty question instance - Change variable name for uploaded file to avoid conflict with queryset variable - Remove description preview --- yaksh/templates/yaksh/add_question.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yaksh/templates') diff --git a/yaksh/templates/yaksh/add_question.html b/yaksh/templates/yaksh/add_question.html index 0c846d0..07e8c74 100644 --- a/yaksh/templates/yaksh/add_question.html +++ b/yaksh/templates/yaksh/add_question.html @@ -67,7 +67,7 @@
{{ fileform.file_field }}{{ fileform.file_field.errors }} -
-- cgit From 708839e795f31fb382841e8b3d1c5fc580b22aec Mon Sep 17 00:00:00 2001 From: aditya Date: Sun, 24 May 2020 21:52:23 +0530 Subject: Show provided question solution --- yaksh/templates/yaksh/view_answerpaper.html | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'yaksh/templates') diff --git a/yaksh/templates/yaksh/view_answerpaper.html b/yaksh/templates/yaksh/view_answerpaper.html index c1f13d1..d955192 100644 --- a/yaksh/templates/yaksh/view_answerpaper.html +++ b/yaksh/templates/yaksh/view_answerpaper.html @@ -167,6 +167,15 @@ {% endfor %} {% endif %}
+
+
+ + Solution for the question +

+ {{ question.solution|safe }} +
+
+
Student answer(s): -- cgit