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
@@ -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),