from django.urls import path from .views import * from .js_views import * urlpatterns = [ path('articles/', ArticlesPageView, name=u'articles'), path('articles//', ArticlesPageView, name=u'articles_by_year'), path('article//', ArticlesOnePageView, name=u'article_one'), path('info_page//', UserPageView, name=u'user_page'), path('get_articles_block/', get_articles_block_ajax, name='get_articles_block_ajax'), ]