Files
tripwithbonus/ArticlesApp/js_urls.py
SDE b89b9ed017 0.7.52
articles page
2023-10-05 19:21:27 +03:00

10 lines
247 B
Python

# coding=utf-8
from django.urls import path
# from AuthApp.js_views import *
# from AuthApp.import_funcs import *
from .js_views import *
urlpatterns = [
path('get_articles_block/', get_articles_block_ajax, name='get_articles_block_ajax'),
]