chore(dgsi): Add a legal notice
This commit is contained in:
parent
0e22a71df6
commit
21fe6c01a8
3 changed files with 51 additions and 0 deletions
43
src/dgsi/templates/dgsi/mentions-legales.html
Normal file
43
src/dgsi/templates/dgsi/mentions-legales.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<h2 class="subtitle">Mentions Légales</h2>
|
||||
<hr>
|
||||
|
||||
<section class="section content">
|
||||
<p class="is-size-4">Éditeur</p>
|
||||
<p>Ce site web est édité par la Délégation Générale Numérique.</p>
|
||||
<p>
|
||||
<b>Délégation Générale Numérique (DGNum)</b>
|
||||
<br>
|
||||
Association de loi 1901
|
||||
</p>
|
||||
<p>
|
||||
Siège social :
|
||||
<br>
|
||||
<i>45 rue d'Ulm, 75005 Paris - France</i>
|
||||
</p>
|
||||
<p>Directeur de publication : Jean-Marc Gailis</p>
|
||||
<p>Contact : contact[at]dgnum.eu</p>
|
||||
|
||||
<hr>
|
||||
<p class="is-size-4">Hébergeur</p>
|
||||
<p>Ce site web est hébergé par la Délégation Générale Numérique.</p>
|
||||
<p>
|
||||
<b>Délégation Générale Numérique (DGNum)</b>
|
||||
<br>
|
||||
Association de loi 1901
|
||||
</p>
|
||||
<p>
|
||||
Siège social :
|
||||
<br>
|
||||
<i>45 rue d'Ulm, 75005 Paris - France</i>
|
||||
</p>
|
||||
<p>Directeur de publication : Jean-Marc Gailis</p>
|
||||
<p>Contact : contact[at]dgnum.eu</p>
|
||||
|
||||
</section>
|
||||
|
||||
{% endblock content %}
|
|
@ -1,4 +1,5 @@
|
|||
from django.urls import path
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
from . import views
|
||||
|
||||
|
@ -7,6 +8,11 @@ app_name = "dgsi"
|
|||
urlpatterns = [
|
||||
# Misc views
|
||||
path("", views.IndexView.as_view(), name="dgn-index"),
|
||||
path(
|
||||
"mentions-legales",
|
||||
TemplateView.as_view(template_name="dgsi/mentions-legales.html"),
|
||||
name="dgn-mentions-legales",
|
||||
),
|
||||
# Archives
|
||||
path("archives/", views.ArchiveListView.as_view(), name="dgn-archives"),
|
||||
path(
|
||||
|
|
|
@ -2,5 +2,7 @@
|
|||
|
||||
<footer class="footer has-text-centered">
|
||||
<b>{% blocktrans %}Logiciel développé pour et par la <a href="https://dgnum.eu">DGNum</a>.{% endblocktrans %}</b>
|
||||
<hr class="my-2">
|
||||
<a class="tag is-medium" href="{% url "dgsi:dgn-mentions-legales" %}">Mentions Légales</a>
|
||||
{% django_browser_reload_script %}
|
||||
</footer>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue