diff --git a/physics/forms.py b/physics/forms.py
index a5db8f9f..5ae1116a 100755
--- a/physics/forms.py
+++ b/physics/forms.py
@@ -27,6 +27,8 @@ class CidUserAnswerForm(ModelForm):
super(CidUserAnswerForm, self).__init__(*args, **kwargs)
#self.fields['answer'].required = False
+
+
# This should be made generic?
class ExamForm(ModelForm):
class Meta:
diff --git a/physics/templates/physics/exam_finish.html b/physics/templates/physics/exam_finish.html
new file mode 100644
index 00000000..5f88b574
--- /dev/null
+++ b/physics/templates/physics/exam_finish.html
@@ -0,0 +1,23 @@
+{% extends 'base.html' %}
+
+{% block content %}
+CID: {{cid}}
+
+
Exam: {{exam.name}}
+
+
Questions
+{{answer_count}} out of {{exam_length}} questions answered. Click to go to question.
+
+{% for question, answer in question_answer_tuples %}
+
+{% endfor %}
+
+
+{% endblock %}
+
+{% block js %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/physics/templates/physics/exam_start.html b/physics/templates/physics/exam_start.html
new file mode 100755
index 00000000..f3d4027e
--- /dev/null
+++ b/physics/templates/physics/exam_start.html
@@ -0,0 +1,25 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
{{exam.name}}
+
+Enter your CID in the below box.
+
+
+
+
+
+{% endblock %}
diff --git a/physics/templates/physics/exam_take.html b/physics/templates/physics/exam_take.html
old mode 100644
new mode 100755
index 863811a9..b4b3c194
--- a/physics/templates/physics/exam_take.html
+++ b/physics/templates/physics/exam_take.html
@@ -1,280 +1,104 @@
-{% extends 'physics/base.html' %}
+{% extends 'base.html' %}
{% block content %}
-
-
-
Exam: {{ exam.name }}
-
-
-
-
Instructions
-
- Please make sure you submit answers before closing or navigating from this page (as otherwise they will not
- be saved). The submit button is at the bottom of the page.
-
-
- Click on a question to toggle between true / false.
-
-
- Ensure your candidate number is entered in the below box.
-
-
-
-
-
- Candidate number:
-
-
-
Questions
-
- {% autoescape off %}
-
- {% for question in questions.all %}
-
-
+ Exam is in review mode. Add question feedback here.
+ {% endif %}
+
+
+
{{question.stem|safe}}
+
+
+
{{question.a_answer|safe}}
+
{{question.b_answer|safe}}
+
{{question.c_answer|safe}}
+
{{question.d_answer|safe}}
+
{{question.e_answer|safe}}
+
-
-
-
+
{% endblock %}
+
+{% block js %}
+
+{% endblock %}
+{% block css %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/physics/templates/physics/exam_take_old.html b/physics/templates/physics/exam_take_old.html
new file mode 100644
index 00000000..863811a9
--- /dev/null
+++ b/physics/templates/physics/exam_take_old.html
@@ -0,0 +1,280 @@
+{% extends 'physics/base.html' %}
+
+{% block content %}
+
+
+
Exam: {{ exam.name }}
+
+
+
+
Instructions
+
+ Please make sure you submit answers before closing or navigating from this page (as otherwise they will not
+ be saved). The submit button is at the bottom of the page.
+
+
+ Click on a question to toggle between true / false.
+
+
+ Ensure your candidate number is entered in the below box.
+
+
+
+
+
+ Candidate number:
+
+
+
Questions
+
+ {% autoescape off %}
+
+ {% for question in questions.all %}
+
+