This commit is contained in:
Ross
2022-06-08 18:18:33 +01:00
parent 3a542231f0
commit 0c6156c975
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -805,7 +805,7 @@ class ExamViews(View, LoginRequiredMixin):
app_exam_map = {} app_exam_map = {}
app_exam_map["rapids"] = cid_user.rapid_exams app_exam_map["rapids"] = cid_user.rapid_exams
app_exam_map["anatomy"] = cid_user.anatomy_exams app_exam_map["anatomy"] = cid_user.anatomy_exams
app_exam_map["longs"] = cid_user.long_exams app_exam_map["longs"] = cid_user.longs_exams
app_exam_map["atlas"] = cid_user.casecollection_exams app_exam_map["atlas"] = cid_user.casecollection_exams
if add: if add:
+4
View File
@@ -20,4 +20,8 @@
</div> </div>
{% render_table table %} {% render_table table %}
<button id="button-select-add-exam" data-exam_json_edit_url="{% url 'generic:generic_exam_json_edit' %}" data-exam_list_url="{% url 'rapid-exam-list' %}" data-type="rapid" data-csrf="{{ csrf_token}}">Add selected questions to
exam</button>
<div id="exam-options"></div>
{% endblock %} {% endblock %}