From 5b1374bf1bb1633dd5aeb81af5c5d84783cccd39 Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Sun, 26 Mar 2023 11:58:35 +0200 Subject: [PATCH] Add link to the drawing interface Signed-off-by: Emmy D'Anello --- draw/urls.py | 2 +- tfjm/templates/base.html | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/draw/urls.py b/draw/urls.py index 37feaa2..9fcf707 100644 --- a/draw/urls.py +++ b/draw/urls.py @@ -9,6 +9,6 @@ from .views import DisplayContentView, DisplayView app_name = "draw" urlpatterns = [ - path('', DisplayView.as_view()), + path('', DisplayView.as_view(), name='index'), path('content//', DisplayContentView.as_view()), ] diff --git a/tfjm/templates/base.html b/tfjm/templates/base.html index 5f6433f..1da14b7 100644 --- a/tfjm/templates/base.html +++ b/tfjm/templates/base.html @@ -91,6 +91,11 @@ {% endif %} {% endif %} +