gault-millau/project/urls/back.py
Виктор Гладких 5a058c14f4 Add back for review
2019-10-17 15:26:26 +03:00

14 lines
504 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')),
path('review/', include('review.urls.back')),
]