diff options
Diffstat (limited to 'pyblackbird_cc/resources')
-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( |