inital checkin
This commit is contained in:
12
decks/urls.py
Normal file
12
decks/urls.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'decks'
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.deck_list, name='deck_list'),
|
||||
path('new/', views.deck_create, name='deck_create'),
|
||||
path('import/', views.deck_import, name='deck_import'),
|
||||
path('<int:deck_id>/', views.deck_builder, name='deck_builder'),
|
||||
path('<int:deck_id>/remove/<int:card_id>/', views.remove_card_from_deck, name='remove_card'),
|
||||
]
|
||||
Reference in New Issue
Block a user