28 lines
973 B
HTML
28 lines
973 B
HTML
{% extends 'atlas/base.html' %}
|
|
|
|
{% block content %}
|
|
{% if request.user.is_authenticated %}
|
|
<div class="floating-header">
|
|
<a href="{% url 'atlas:collection_update' collection.id %}" title="Edit the Collection">Edit</a>
|
|
\ <a href="{% url 'atlas:collection_delete' collection.id %}" title="Delete the Collection">Delete</a>
|
|
{% comment %} \ <a href="{% url 'atlas:collection_clone' collection.id %}" title="Clone the Collection">Clone</a> {% endcomment %}
|
|
{% if request.user.is_superuser %}
|
|
\ <a href="{% url 'admin:atlas_casecollection_change' collection.id %}" title="Edit the Collection using the admin interface">Admin Edit</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
<h2>{{collection.name}}
|
|
|
|
{% include 'exam_notes.html' %}
|
|
<ul>
|
|
{% for case in collection.cases.all %}
|
|
<li><a href="{% url 'atlas:collection_case_view' pk=collection.pk case_number=forloop.counter0 %}">Case {{forloop.counter}}</a>
|
|
: {{case.title}}
|
|
</li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %} |