diff --git a/physics/templates/physics/base.html b/physics/templates/physics/base.html
index 9c334541..e978bcf1 100644
--- a/physics/templates/physics/base.html
+++ b/physics/templates/physics/base.html
@@ -6,9 +6,13 @@ Physics
{% block navigation %}
Physics:
-{% if request.user.is_authenticated %}
-Exams /
-{% endif %}
+ {% if request.user.is_authenticated %}
+ Exams /
+ Questions
+ {% if request.user.is_superuser %}
+ / Answers
+ {% endif %}
+ {% endif %}
{% endblock %}
{% block content %}
{% endblock %}
\ No newline at end of file