This commit is contained in:
Ross
2022-01-10 14:24:04 +00:00
parent 9f4bac8dc9
commit e3dbdb2615
3 changed files with 29 additions and 9 deletions
+9 -7
View File
@@ -1,7 +1,7 @@
{% extends 'base.html' %}
{% block title %}
Candidates
Candidates
{% endblock %}
{% block css %}
@@ -15,9 +15,11 @@ Candidates
{% block content %}
{% endblock %}
{% block navigation %}
Candidates:
{% if request.user.is_authenticated %}
<a href="{% url 'generic:manage_cids' %}">Cids</a> /
<a href="{% url 'generic:group_view' %}">Groups</a> /
{% endif %}
{% endblock %}
Candidates:
{% if request.user.is_authenticated %}
<a href="{% url 'generic:manage_cids' %}">Cids</a> /
<a href="{% url 'generic:manage_cid_exams' %}">Cids (exams)</a> /
<a href="{% url 'generic:group_view' %}">Groups</a> /
{% endif %}
{% endblock %}