profile change photo
This commit is contained in:
SDE
2023-10-22 14:18:22 +03:00
parent 51598dc022
commit cc377963e0
4 changed files with 65 additions and 4 deletions

View File

@@ -5,6 +5,6 @@ from django.urls import path
from .js_views import *
urlpatterns = [
path('get_articles_block/', get_articles_block_ajax, name='get_articles_block_ajax'),
]

View File

@@ -1,12 +1,9 @@
from django.urls import path
from .views import *
from .js_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'),
path('get_articles_block/', get_articles_block_ajax, name='get_articles_block_ajax'),
]