-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #505 from MTES-MCT/feature/rnu-package-ui
Création de la page de téléchargement des packages rnu
- Loading branch information
Showing
5 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 %} | ||
|
||
<!-- Hide breadcrumbs on home page --> | ||
{% block breadcrumbs %} | ||
{% endblock breadcrumbs %} | ||
|
||
{% block content %} | ||
<section class="fr-py-6w"> | ||
<div class="fr-container"> | ||
<h1>Téléchargements</h1> | ||
<h2>Trames de rapport triennal local des communes sous RNU</h2> | ||
<p>Mon Diagnostic Artificialisation met à disposition des DDT les trames de rapport triennal local par paquets de leurs communes sous RNU</p> | ||
<ul> | ||
{% for departement in departements %} | ||
<li class="fr-mb-2w"> | ||
<div>{{ departement.source_id }} {{ departement.name }}</div> | ||
<div><a href="#" target="_blank">Lien de téléchargement</a></div> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</section> | ||
{% include "home/partials/newsletter_form.html" %} | ||
{% endblock content %} | ||
|
||
{% block tagging %} | ||
<script language="javascript" nonce="[NONCE_PLACEHOLDER]"> | ||
window.onload = function(event) { | ||
_paq.push(['trackEvent', 'local_report_download_funnel', 'open_home_local_report', 'local_report_home_opened']) | ||
} | ||
</script> | ||
{% endblock tagging %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters