11 lines
227 B
Python
11 lines
227 B
Python
"""Collection common urlpaths."""
|
|
from django.urls import path
|
|
|
|
from collection.views import back as views
|
|
|
|
app_name = 'collection'
|
|
|
|
urlpatterns = [
|
|
path('', views.CollectionListCreateView.as_view(), name='list-create'),
|
|
|
|
] |