This commit is contained in:
Ross
2021-12-07 13:21:11 +00:00
parent 15e35641b1
commit 3767f8f7cb
5 changed files with 29 additions and 4 deletions
-3
View File
@@ -19,9 +19,6 @@ Atlas:
{% if request.user.is_authenticated %}
<a href="{% url 'atlas:case_view' %}">Cases</a> /
<a href="{% url 'atlas:series_view' %}">Series</a> /
<a href="{% url 'atlas:condition_view' %}">Conditions</a> /
<a href="{% url 'atlas:finding_view' %}">Findings</a> /
<a href="{% url 'atlas:structure_view' %}">Structures</a> /
<a href="{% url 'atlas:create' %}" title="Create a new atlas case">Create Case</a> /
<a href="{% url 'atlas:series_create' %}" title="Create a new image series">Create Series</a>
{% endif %}
@@ -0,0 +1,12 @@
{% extends 'atlas/base.html' %}
{% block content %}
<ul>
<li><a href="{% url 'atlas:condition_view' %}">Conditions</a></li>
<li><a href="{% url 'atlas:finding_view' %}">Findings</a></li>
<li><a href="{% url 'atlas:structure_view' %}">Structures</li></a>
<li><a href="{% url 'atlas:subspecialty_view' %}">Subspecialties</li></a>
<li><a href="{% url 'atlas:presentation_view' %}">Presentations</li></a>
<li><a href="{% url 'atlas:pathological_process_view' %}">Pathological Process</li></a>
</ul>
{% endblock %}