prod
This commit is contained in:
@@ -24,6 +24,26 @@ urlpatterns = [
|
||||
# path('order/<int:pk>/', views.order_detail, name='order_detail'),
|
||||
path('service/send_telegram_notification/', views.send_telegram_notification, name='send_telegram_notification'),
|
||||
# path('service/create_request/', views.create_service_request_basic, name='create_service_request_basic'),
|
||||
|
||||
# Blog
|
||||
path('blog/', views.blog_list, name='blog_list'),
|
||||
path('blog/<slug:slug>/', views.blog_detail, name='blog_detail'),
|
||||
|
||||
# News
|
||||
path('news/', views.news_list, name='news_list'),
|
||||
path('news/<slug:slug>/', views.news_detail, name='news_detail'),
|
||||
|
||||
# Portfolio
|
||||
path('portfolio/', views.portfolio_list, name='portfolio_list'),
|
||||
path('portfolio/<slug:slug>/', views.portfolio_detail, name='portfolio_detail'),
|
||||
|
||||
# Career
|
||||
path('career/', views.career_list, name='career_list'),
|
||||
path('career/<slug:slug>/', views.career_detail, name='career_detail'),
|
||||
|
||||
# Legal pages
|
||||
path('privacy/', views.privacy_policy, name='privacy_policy'),
|
||||
path('terms/', views.terms_of_use, name='terms_of_use'),
|
||||
]
|
||||
if settings.DEBUG:
|
||||
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
Reference in New Issue
Block a user