diff --git a/home/templates/home/download.html b/home/templates/home/download.html new file mode 100644 index 000000000..6d0bc36a9 --- /dev/null +++ b/home/templates/home/download.html @@ -0,0 +1,43 @@ +{% extends "index.html" %} + +{% load static %} +{% load sri %} + +{% block pagetitle %}Téléchargements{% endblock pagetitle %} + +{% block headers %} +{% sri_static "home/css/home.css" %} +{% endblock headers %} + +{% block body_class %}home{% endblock body_class %} + + +{% block breadcrumbs %} +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Téléchargements

+

Trames de rapport triennal local des communes sous RNU

+

Mon Diagnostic Artificialisation met à disposition des DDT les trames de rapport triennal local par paquets de leurs communes sous RNU

+ +
+
+{% include "home/partials/newsletter_form.html" %} +{% endblock content %} + +{% block tagging %} + +{% endblock tagging %} diff --git a/home/templates/home/home.html b/home/templates/home/home.html index 1afbbbfde..c02fbe924 100644 --- a/home/templates/home/home.html +++ b/home/templates/home/home.html @@ -29,7 +29,8 @@

Mon Diagnostic Artificialisation vous aide à analyser et ma

Nouveau

- Exportez une trame pour votre rapport triennal local de suivi de l'artificialisation des sols conformément à l'article L. 2231-1 du code général des collectivités territoriales + Exportez une trame de votre rapport triennal local de suivi de l'artificialisation des sols conformément à l'article L. 2231-1 du code général des collectivités territoriales.
+ Pour les DDT, ces trames sont disponibles en téléchargement par paquets pour les communes sous RNU.

diff --git a/home/templates/home/home_rapport_local.html b/home/templates/home/home_rapport_local.html index 4a1b6c16d..88d46ee93 100644 --- a/home/templates/home/home_rapport_local.html +++ b/home/templates/home/home_rapport_local.html @@ -23,8 +23,17 @@

Préparer le rapport triennal local de suivi de l’artificialisation des sols avec Mon Diag Artif

-

Notre équipe travaille en partenariat avec la DGALN à la production automatique d'une trame pré-remplie du rapport triennal local de suivi de l’artificialisation des sols de votre territoire.

Nouveau

+

Notre équipe travaille en partenariat avec la DGALN à la production automatique d'une trame pré-remplie du rapport triennal local de suivi de l’artificialisation des sols de votre territoire.

+
+
+
+

+ Pour les DDT, ces trames sont disponibles en téléchargement par paquets pour les communes sous RNU. +

+
+
+
{% include "project/partials/search.html" %}
diff --git a/home/urls.py b/home/urls.py index bbde82466..fec6bc307 100644 --- a/home/urls.py +++ b/home/urls.py @@ -8,6 +8,7 @@ urlpatterns = [ path("", views.HomeView.as_view(), name="home"), path("rapport-local", views.HomeRapportLocalView.as_view(), name="home_rapport_local"), + path("telechargements", views.DownloadView.as_view(), name="downloads"), path("mentions-legales", views.LegalNoticeView.as_view(), name="cgv"), path("confidentialité", views.PrivacyView.as_view(), name="privacy"), path("test", views.TestView.as_view(), name="test"), diff --git a/home/views.py b/home/views.py index e4fec7aad..4e68e1602 100644 --- a/home/views.py +++ b/home/views.py @@ -13,6 +13,7 @@ from brevo.connectors import Brevo from project.models import Request +from public_data.models import Departement from users.models import User from utils.functions import get_url_with_domain from utils.htmx import HtmxRedirectMixin, StandAloneMixin @@ -35,6 +36,17 @@ def get_context_data(self, **kwargs): return super().get_context_data(**kwargs) +class DownloadView(BreadCrumbMixin, TemplateView): + template_name = "home/download.html" + + def get_context_data(self, **kwargs): + kwargs |= { + "form": NewsletterForm(), + "departements": Departement.objects.all().order_by("source_id"), + } + return super().get_context_data(**kwargs) + + class HomeRapportLocalView(BreadCrumbMixin, TemplateView): template_name = "home/home_rapport_local.html"