Fix template names
[tickle] / tickle / urls.py
1 from django.urls import path
2
3 from . import views
4
5 # TODO Move attempts and todos to sub-area under user URLs
6 # TODO Use something other than primary keys in URLs
7
8 app_name = 'tickle'
9
10 urlpatterns = (
11     path('', views.area_list, name='area-list'),
12     path('area/<int:pk>', views.area_detail, name='area-detail'),
13     path('attempt', views.attempt_list, name='attempt-list'),
14     path('boulder/<int:pk>', views.boulder_detail, name='boulder-detail'),
15     path('route/<int:pk>', views.route_detail, name='route-detail'),
16     path('todo', views.todo_list, name='todo-list'),
17 )