15 lines
485 B
Python
15 lines
485 B
Python
"""Location app urlconf."""
|
|
from django.urls import path
|
|
|
|
from news.views import common
|
|
|
|
app_name = 'news'
|
|
|
|
urlpatterns = [
|
|
path('', common.NewsList.as_view(), name='news_list'),
|
|
path('create/', common.NewsCreate.as_view(), name='news_create'),
|
|
path('<int:pk>/', common.NewsDetail.as_view(), name='news_detail'),
|
|
path('<int:pk>/update/', common.NewsUpdate.as_view(), name='news_update'),
|
|
path('<int:pk>/delete/', common.NewsDelete.as_view(), name='news_delete'),
|
|
]
|