gault-millau/project/urls/mobile.py
2019-11-15 13:02:04 +03:00

18 lines
696 B
Python

from django.urls import path, include
app_name = 'mobile'
urlpatterns = [
path('establishments/', include('establishment.urls.mobile')),
path('location/', include('location.urls.mobile')),
path('main/', include('main.urls.mobile')),
path('tags/', include('tag.urls.mobile')),
path('timetables/', include('timetable.urls.mobile')),
# path('account/', include('account.urls.web')),
path('re_blocks/', include('advertisement.urls.mobile')),
# path('collection/', include('collection.urls.web')),
# path('establishments/', include('establishment.urls.web')),
path('news/', include('news.urls.mobile')),
# path('partner/', include('partner.urls.web')),
]