From 4def423d573beceee07780f21bcd55836d50b558 Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Mon, 13 Aug 2018 15:36:48 +0530 Subject: Allow new line to be added in an stdio testcase --- yaksh/templates/yaksh/add_question.html | 2 ++ yaksh/templates/yaksh/error_template.html | 11 +++++++++-- yaksh/templates/yaksh/moderator_dashboard.html | 6 +++++- 3 files changed, 16 insertions(+), 3 deletions(-) (limited to 'yaksh/templates') diff --git a/yaksh/templates/yaksh/add_question.html b/yaksh/templates/yaksh/add_question.html index 692af48..c4cd8a7 100644 --- a/yaksh/templates/yaksh/add_question.html +++ b/yaksh/templates/yaksh/add_question.html @@ -50,7 +50,9 @@ {% for form in formset %} {% endfor %} diff --git a/yaksh/templates/yaksh/error_template.html b/yaksh/templates/yaksh/error_template.html index 5530844..00fa306 100644 --- a/yaksh/templates/yaksh/error_template.html +++ b/yaksh/templates/yaksh/error_template.html @@ -1,4 +1,11 @@ +{% block css%} + +{% endblock %} +{% block script %} + +{% endblock %} + {% load custom_filters %} {% if error_message %}
@@ -64,8 +71,8 @@ {% for expected,user in error.expected_output|zip:error.user_output %} {{forloop.counter}} - {{expected|default:""}} - {{user|default:""}} + {{expected|default:""|highlight_spaces|safe}} + {{user|default:""|highlight_spaces|safe}} {% if forloop.counter0 in error.error_line_numbers or not expected or not user %} {% else %} diff --git a/yaksh/templates/yaksh/moderator_dashboard.html b/yaksh/templates/yaksh/moderator_dashboard.html index 503cc72..59dd123 100644 --- a/yaksh/templates/yaksh/moderator_dashboard.html +++ b/yaksh/templates/yaksh/moderator_dashboard.html @@ -102,7 +102,11 @@ {% endfor %} -
+
+
{% endif %} -- cgit