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

@@ -0,0 +1 @@
DATA protection

View File

@@ -0,0 +1 @@
Imprint

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"),

View File

@@ -86,7 +86,26 @@ class PrivacyPolicyView(TemplateView):
context["meta_title"] = seo.privacy_pol_meta_title if seo else "Privacy Policy - Zestato"
context["meta_description"] = seo.privacy_pol_meta_description if seo else "Read Zestato's privacy practices and data usage policy."
return context
class DataProtectionView(TemplateView):
template_name = 'legal/data_protection.html'
class ImprintView(TemplateView):
template_name = 'legal/imprint.html'
class PressView(TemplateView):
template_name = 'company/press.html'
class SuccessStories(TemplateView):
template_name = 'company/success_stories.html'
class Training(TemplateView):
template_name = 'company/training.html'
class HelpAndSupport(TemplateView):
template_name = 'company/help_and_support.html'
class AboutUsView(TemplateView):
template_name = 'company/about_us.html'
@@ -108,6 +127,8 @@ class OurCoreTeam(TemplateView):
class CookiePolicy(TemplateView):
template_name = 'legal/cookiepolicy.html'
class CareersView(TemplateView):
template_name = 'company/careers.html'