Remove boulder and route list views
[tickle] / tickle / urls.py
index 06c007e..6efc761 100644 (file)
@@ -11,9 +11,7 @@ urlpatterns = (
     path('area', views.area_list, name='area-list'),
     path('area/<int:pk>', views.area_detail, name='area-detail'),
     path('attempt', views.attempt_list, name='attempt-list'),
-    path('boulder', views.boulder_list, name='boulder-list'),
     path('boulder/<int:pk>', views.boulder_detail, name='boulder-detail'),
-    path('route', views.route_list, name='route-list'),
     path('route/<int:pk>', views.route_detail, name='route-detail'),
     path('todo', views.todo_list, name='todo-list'),
 )