Added route for mobile tags
This commit is contained in:
parent
e0bce99ca9
commit
8dad3df4bf
7
apps/tag/urls/mobile.py
Normal file
7
apps/tag/urls/mobile.py
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
from tag.urls.web import urlpatterns as common_urlpatterns
|
||||||
|
|
||||||
|
urlpatterns = [
|
||||||
|
|
||||||
|
]
|
||||||
|
|
||||||
|
urlpatterns.extend(common_urlpatterns)
|
||||||
|
|
@ -4,6 +4,7 @@ app_name = 'mobile'
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path('establishments/', include('establishment.urls.mobile')),
|
path('establishments/', include('establishment.urls.mobile')),
|
||||||
|
path('tags/', include('tag.urls.mobile')),
|
||||||
# path('account/', include('account.urls.web')),
|
# path('account/', include('account.urls.web')),
|
||||||
# path('advertisement/', include('advertisement.urls.web')),
|
# path('advertisement/', include('advertisement.urls.web')),
|
||||||
# path('collection/', include('collection.urls.web')),
|
# path('collection/', include('collection.urls.web')),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user