diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-15 18:25:01 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-15 18:25:01 +0100 |
commit | 6ef5e1a50e29938f5bdb852f20e2f8be6ea2bc95 (patch) | |
tree | f98bde54251080bdf7f8b5cde3f3e9d020bea7b4 /pyblackbird_cc/resources/urls.py | |
parent | e2127b11df6aa712d532b6aeabd9a33e405ddc75 (diff) |
Adds an admin bar to resources page and moves some stuff to home
Diffstat (limited to 'pyblackbird_cc/resources/urls.py')
-rw-r--r-- | pyblackbird_cc/resources/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyblackbird_cc/resources/urls.py b/pyblackbird_cc/resources/urls.py index 86b3f4d..ad5741f 100644 --- a/pyblackbird_cc/resources/urls.py +++ b/pyblackbird_cc/resources/urls.py @@ -4,7 +4,7 @@ from . import views app_name = "resources" urlpatterns = [ - path("", views.index, name="index"), + path("", views.index, name="resource_list"), path("create/", views.create_resource, name="create_resource"), path("resource/<int:resource_id>", views.resource_detail, name="resource_detail"), path( |