added all html pages in this

This commit is contained in:
2026-01-07 13:06:58 +05:30
parent 0c275efea1
commit a865c4d1cd
10 changed files with 61 additions and 39 deletions

View File

@@ -10,14 +10,24 @@ urlpatterns = [
path("faq/", views.FaqView.as_view(), name="faq"),
path("terms-conditions/", views.TermsView.as_view(), name="terms_conditions"),
path("privacy-policy/", views.PrivacyPolicyView.as_view(), name="privacy"),
path("data-protection/", views.DataProtectionView.as_view(), name="data_protection"),
path("imprint/", views.ImprintView.as_view(), name="imprint"),
path("cookie-policy/", views.CookiePolicy.as_view(), name="cookie"),
path("about/", views.AboutUsView.as_view(), name="about"),
path("blog_list/", views.BlogsView.as_view(), name="blog_list"),
path("help-and-support/", views.HelpAndSupport.as_view(), name="help_and_support"),
path("training/", views.Training.as_view(), name="training"),
path("blog-list/", views.BlogsView.as_view(), name="blog_list"),
path("careers/", views.CareersView.as_view(), name="careers"),
path("our_core_team/", views.OurCoreTeam.as_view(), name="our-core-team"),
path("our-core-team/", views.OurCoreTeam.as_view(), name="our_core_team"),
path("success-stories/", views.SuccessStories.as_view(), name="success_stories"),
path("subscribe/", views.subscribe_view, name="subscribe"),
path("unsubscribe/<uuid:id>", views.unsubscribe_view, name="unsubscribe"),
path("press/", views.PressView.as_view(), name="press"),
path("robots.txt", views.robots_txt, name="robots_txt"),