gault-millau/project/urls/back.py
Виктор Гладких 48ca13803e Pre test permission comment
2019-10-09 14:44:01 +03:00

13 lines
454 B
Python

from django.urls import path, include
app_name = 'back'
urlpatterns = [
path('gallery/', include(('gallery.urls', 'gallery'),
namespace='gallery')),
path('establishments/', include('establishment.urls.back')),
path('location/', include('location.urls.back')),
path('news/', include('news.urls.back')),
path('account/', include('account.urls.back')),
path('comment/', include('comment.urls.back')),
]