31 lines
833 B
HTML
Executable File
31 lines
833 B
HTML
Executable File
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Candidates
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
{% block navigation %}
|
|
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:cid_group_view' %}">Cid Groups</a> /
|
|
<a href="{% url 'generic:user_group_view' %}">User Groups</a> /
|
|
<a href="{% url 'trainees' %}">Trainees</a> /
|
|
<a href="{% url 'accounts_list' %}">Manage Users</a> /
|
|
<a href="{% url 'generic:supervisor' %}">Manage Supervisors</a> /
|
|
<a href="{% url 'generic:examcollection_list' %}">Collections</a>
|
|
|
|
{% endif %}
|
|
{% endblock %}
|