diff --git a/templates/quiz/mcquestion_form.html b/templates/quiz/mcquestion_form.html
index 2d68194..7cae6a7 100644
--- a/templates/quiz/mcquestion_form.html
+++ b/templates/quiz/mcquestion_form.html
@@ -14,9 +14,18 @@
-
Add questions [{{ quiz_obj|truncatechars:15 }}]
-
-{{ formset.non_form_errors }}
+Add questions [{{ quiz_obj|truncatechars:15 }}]
+
+{% if formset.non_form_errors %}
+
+
+ {% for e in formset.non_form_errors %}
+ - {{ e }}
+ {% endfor %}
+
+
+{% endif %}
+
{{ quizQuestions }} question added
@@ -40,11 +49,11 @@
{% endfor %}
diff --git a/templates/quiz/quiz_list.html b/templates/quiz/quiz_list.html
index 283111b..326f337 100644
--- a/templates/quiz/quiz_list.html
+++ b/templates/quiz/quiz_list.html
@@ -72,6 +72,11 @@
+
+ {% empty %}
+
+ Course quizzes will appear here.
+
{% endfor %}