add basic atlas help

This commit is contained in:
Ross
2024-02-14 17:44:00 +00:00
parent 6c8694822b
commit 8d0e666a96
3 changed files with 27 additions and 2 deletions
+2 -1
View File
@@ -12,7 +12,8 @@
<a href="{% url 'atlas:series_view' %}">Series</a> /
<a href="{% url 'atlas:categories_list' %}">Categories</a> /
<a href="{% url 'atlas:case_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>
<a href="{% url 'atlas:series_create' %}" title="Create a new image series">Create Series</a> /
<a href="{% url 'atlas:help' %}" title="View the atlas help pages">Help</a>
{% endif %}
{% comment %} </br>
Questions by:
+23
View File
@@ -0,0 +1,23 @@
{% extends 'atlas/base.html' %}
{% block content %}
<h2>Anatomy of the Atlas</h2>
The atlas consists of a number of different costituents.
<h3>Series</h3>
<p>A series is a stack of images. They should consist of a single modality, and be of the same body part and aquired at the same time. For example, a CT scan of the head, or an MRI of the knee. </p>
<p>Each series can be associated with an arbitary number of cases.</p>
<h3>Cases</h3>
<p>A case is the basic unit of the atlas. It should consist of one or more series, and be associated with a single patient.</p>
<p>Additional information can be added to a case, such as history, description, report, diagnosis and differential.</p>
<h3>Collection</h3>
<p>A collection is a group of cases. It can be used to group cases. Cases can below to more than one group.</p>
{% endblock %}
+2 -1
View File
@@ -1,5 +1,5 @@
from django.urls import path, include
from django.views.generic import RedirectView
from django.views.generic import RedirectView, TemplateView
from atlas.models import Condition, Finding, Presentation, Structure
@@ -9,6 +9,7 @@ app_name = "atlas"
urlpatterns = [
path("", views.index, name="index"),
path("help/", TemplateView.as_view(template_name="atlas/help.html"), name="help"),
path(
"create/",
RedirectView.as_view(pattern_name="atlas:case_create", permanent=False),