blob: 49a5a2efdf35feb9ef82e132eaedaffe0b4aabca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
from django.urls import path
from . import views
app_name = "content"
urlpatterns = [
path("", views.ArticlesView.as_view(), name='articles'),
path("<path:location>/", views.ArticleOrCategoryView.as_view(), name='article_category'),
]
|