diff --git a/generic/templates/generic/exam_overview_headers.html b/generic/templates/generic/exam_overview_headers.html
index 2f7446f6..2da24226 100644
--- a/generic/templates/generic/exam_overview_headers.html
+++ b/generic/templates/generic/exam_overview_headers.html
@@ -3,6 +3,12 @@
{% include 'exam_notes.html' %}
+
+{% if exam.examcollection %}
+
Exam JSON may be out of date.
diff --git a/rad/settings.py b/rad/settings.py
index 312b0406..e8358712 100644
--- a/rad/settings.py
+++ b/rad/settings.py
@@ -104,6 +104,13 @@ MIDDLEWARE = [
ROOT_URLCONF = "rad.urls"
+default_loaders = [
+ "django.template.loaders.filesystem.Loader",
+ "django.template.loaders.app_directories.Loader",
+]
+
+cached_loaders = [("django.template.loaders.cached.Loader", default_loaders)]
+
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
@@ -117,7 +124,9 @@ TEMPLATES = [
"django.contrib.messages.context_processors.messages",
"django.template.context_processors.static",
],
+ "loaders": default_loaders if DEBUG else cached_loaders,
},
+
},
]
diff --git a/templates/exam_clone_form.html b/templates/exam_clone_form.html
index b642485b..d3edb754 100644
--- a/templates/exam_clone_form.html
+++ b/templates/exam_clone_form.html
@@ -13,7 +13,7 @@
Cloning Exam: {{exam}}
- This will create a new exam with the same settings, questions and answers as the original exam.
+ This will create a new exam with the same settings, authors, questions and answers as the original exam.
Candidate groups and candidates will not be cloned.