gault-millau/project/urls/back.py
Виктор Гладких 264e7bcb2a Fix conflict
2019-10-21 14:43:14 +03:00

18 lines
652 B
Python

from django.urls import path, include
app_name = 'back'
urlpatterns = [
path('account/', include('account.urls.back')),
path('comment/', include('comment.urls.back')),
path('establishments/', include('establishment.urls.back')),
path('gallery/', include(('gallery.urls', 'gallery'), namespace='gallery')),
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')),
path('tags/', include(('tag.urls.back', 'tag'), namespace='tag')),
]