This commit is contained in:
Ross
2022-04-26 20:20:11 +01:00
parent aefd0b7d25
commit 65fd865b4b
2 changed files with 5 additions and 1 deletions
@@ -1,6 +1,6 @@
{% if request.user.is_authenticated %} {% if request.user.is_authenticated %}
Collection: {{collection.name}}-> <a href="{% url 'atlas:collection_detail' pk=collection.pk %}">Overview</a> / <br/>Collection: {{collection.name}}-> <a href="{% url 'atlas:collection_detail' pk=collection.pk %}">Overview</a> /
<a href="{% url 'atlas:collection_mark_overview' collection.pk %}">Mark</a> / <a href="{% url 'atlas:collection_mark_overview' collection.pk %}">Mark</a> /
<a href="{% url 'atlas:collection_scores_cid' collection.pk %}">Scores</a> / <a href="{% url 'atlas:collection_scores_cid' collection.pk %}">Scores</a> /
<a href="{% url 'atlas:exam_cids' collection.pk %}">Candidates</a> <a href="{% url 'atlas:exam_cids' collection.pk %}">Candidates</a>
@@ -1,6 +1,7 @@
<h3>CID Users</h3> <h3>CID Users</h3>
{% if groups %}
Users from the following groups are available: {% for group in groups %}{{group}}{% endfor %} . Users from the following groups are available: {% for group in groups %}{{group}}{% endfor %} .
<ol> <ol>
{% for cid in current_cid_users %} {% for cid in current_cid_users %}
@@ -18,6 +19,9 @@
{% endfor %} {% endfor %}
</ol> </ol>
{% else %}
This exam is not associated with any user groups. Edit and add a group to enable user management.
{% endif %}
<a href="{% url 'generic:manage_cids' %}">Manage CIDs here</a> <a href="{% url 'generic:manage_cids' %}">Manage CIDs here</a>