diff --git a/at_django_boilerplate/core/templates/company/help_and_support.html b/at_django_boilerplate/core/templates/company/help_and_support.html new file mode 100644 index 0000000..e69de29 diff --git a/at_django_boilerplate/core/templates/company/press.html b/at_django_boilerplate/core/templates/company/press.html new file mode 100644 index 0000000..e69de29 diff --git a/at_django_boilerplate/core/templates/company/success_stories.html b/at_django_boilerplate/core/templates/company/success_stories.html new file mode 100644 index 0000000..e69de29 diff --git a/at_django_boilerplate/core/templates/company/training.html b/at_django_boilerplate/core/templates/company/training.html new file mode 100644 index 0000000..e69de29 diff --git a/at_django_boilerplate/core/templates/legal/data_protection.html b/at_django_boilerplate/core/templates/legal/data_protection.html new file mode 100644 index 0000000..cb3f8b9 --- /dev/null +++ b/at_django_boilerplate/core/templates/legal/data_protection.html @@ -0,0 +1 @@ +DATA protection \ No newline at end of file diff --git a/at_django_boilerplate/core/templates/legal/imprint.html b/at_django_boilerplate/core/templates/legal/imprint.html new file mode 100644 index 0000000..929a7f8 --- /dev/null +++ b/at_django_boilerplate/core/templates/legal/imprint.html @@ -0,0 +1 @@ +Imprint \ No newline at end of file diff --git a/at_django_boilerplate/core/urls.py b/at_django_boilerplate/core/urls.py index 84a139c..1d75c8a 100755 --- a/at_django_boilerplate/core/urls.py +++ b/at_django_boilerplate/core/urls.py @@ -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/", views.unsubscribe_view, name="unsubscribe"), - + path("press/", views.PressView.as_view(), name="press"), path("robots.txt", views.robots_txt, name="robots_txt"), diff --git a/at_django_boilerplate/core/views.py b/at_django_boilerplate/core/views.py index 8db6866..542473a 100755 --- a/at_django_boilerplate/core/views.py +++ b/at_django_boilerplate/core/views.py @@ -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' diff --git a/templates/includes/footer.html b/templates/includes/footer.html index 0c5ed93..cbd2753 100755 --- a/templates/includes/footer.html +++ b/templates/includes/footer.html @@ -14,11 +14,11 @@

Products

@@ -26,10 +26,10 @@

Pursue

@@ -37,9 +37,9 @@

Legal

@@ -104,11 +104,11 @@

Products

@@ -116,10 +116,10 @@

Pursue

@@ -127,9 +127,9 @@

Legal

diff --git a/templates/includes/public_navbar.html b/templates/includes/public_navbar.html index 21a9751..9079881 100755 --- a/templates/includes/public_navbar.html +++ b/templates/includes/public_navbar.html @@ -14,17 +14,6 @@ - - - \ No newline at end of file