Files
account_store/ArticlesApp/urls_translate.py
SDE deadb0c73c 0.7.21
sub_footer links
2023-09-04 12:17:17 +03:00

9 lines
351 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path('articles/', ArticlesPageView, name=u'articles'),
path('articles/<int:year>/', ArticlesPageView, name=u'articles_by_year'),
path('article/<str:art_url>/', ArticlesOnePageView, name=u'article_one'),
path('info_page/<str:page_url>/', UserPageView, name=u'user_page'),
]