14 lines
527 B
Python
14 lines
527 B
Python
from django.urls import path, include
|
|
|
|
app_name = 'back'
|
|
|
|
urlpatterns = [
|
|
path('gallery/', include(('gallery.urls', 'gallery'),
|
|
namespace='gallery')),
|
|
# path('account/', include('account.urls.web')),
|
|
# path('advertisement/', include('advertisement.urls.web')),
|
|
# path('collection/', include('collection.urls.web')),
|
|
path('establishments/', include('establishment.urls.back')),
|
|
# path('news/', include('news.urls.web')),
|
|
# path('partner/', include('partner.urls.web')),
|
|
] |