urls.py 1.1 KB

12345678910111213141516171819202122232425262728
  1. from django.urls import path, include
  2. from .views import *
  3. urlpatterns = [
  4. #path('', include('django.contrib.flatpages.urls')),
  5. path('', index_html, name='main'),
  6. path('order/', order_html, name='order'),
  7. path('faq/', faq_html, name='faq'),
  8. path('price/', price_html, name='price'),
  9. path('contact/', contact_html, name='contact'),
  10. #pages
  11. path('clean-car/', page_html, name='clean-car'),
  12. path('clean-fit/', page_html, name='clean-fit'),
  13. path('clean-office/', page_html, name='clean-office'),
  14. path('clean-tcj/', page_html, name='clean-tcj'),
  15. path('clean-area/', page_html, name='clean-area'),
  16. path('clean-facades/', page_html, name='clean-facades'),
  17. path('clean-apartments/', page_html, name='clean-apartments'),
  18. path('clean-cottages/', page_html, name='clean-cottages'),
  19. path('clean-out/', page_html, name='clean-out'),
  20. path('clean-renovation/', page_html, name='clean-renovation'),
  21. #path('services/<str:page>/', services_html, name="services"),
  22. #path('', views.flatpage, {'url': ''}, name='about'),
  23. #path('test/', views.flatpage, {'url': '/test/'}, name='test'),
  24. ]