diff --git a/templates/base.html b/templates/base.html
index c9ec78d3..9c24e7f7 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -86,15 +86,20 @@
Atlas
+ {% if perms.generic.can_add_cid_user %}
Candidates
{% endif %}
+ {% endif %}
{% if request.user.is_staff %}
Admin
{% endif %}
+
+ Home
+
{% block navigation %}
diff --git a/templates/index.html b/templates/index.html
index e4fa03c5..cbff6444 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,33 +1,35 @@
{% extends 'base.html' %}
{% block content %}
-
- {% if request.user.is_authenticated %}
+
+
+ {% if request.user.is_authenticated %}
+
Your Exams
-
- {% endif %}
+
+ {% endif %}
RTS is available here
{% if request.user.is_staff %}
- Manage users
here
+ Manage users
here
{% endif %}
{% endblock %}