added all html pages in this
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DATA protection
|
||||
1
at_django_boilerplate/core/templates/legal/imprint.html
Normal file
1
at_django_boilerplate/core/templates/legal/imprint.html
Normal file
@@ -0,0 +1 @@
|
||||
Imprint
|
||||
@@ -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"),
|
||||
|
||||
|
||||
@@ -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'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user