summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-03-20 23:08:53 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-03-20 23:08:53 +0100
commit8bafcfe0d527ebdcb6d40fc1d209f77432869609 (patch)
treedb7472fc6fab90d40e3eca27e6f83caec6bd8b52
parente7adaf96d001a27f9b795a0e0d4f52bacf03e10e (diff)
downloadChimère-8bafcfe0d527ebdcb6d40fc1d209f77432869609.tar.bz2
Chimère-8bafcfe0d527ebdcb6d40fc1d209f77432869609.zip
Templates: specific file for panel_footer.html
-rw-r--r--chimere/static/chimere/css/styles.css1
-rw-r--r--chimere/templates/chimere/blocks/panel_footer.html2
-rw-r--r--chimere/templates/chimere/main_map.html5
3 files changed, 4 insertions, 4 deletions
diff --git a/chimere/static/chimere/css/styles.css b/chimere/static/chimere/css/styles.css
index d6f85a8..28e4cd2 100644
--- a/chimere/static/chimere/css/styles.css
+++ b/chimere/static/chimere/css/styles.css
@@ -2930,6 +2930,7 @@ div#panel{
width: 283px;
height: 26px;
font-size: 0.88em;
+ z-index: 10;
}
#footer-panel a{
diff --git a/chimere/templates/chimere/blocks/panel_footer.html b/chimere/templates/chimere/blocks/panel_footer.html
new file mode 100644
index 0000000..e25908d
--- /dev/null
+++ b/chimere/templates/chimere/blocks/panel_footer.html
@@ -0,0 +1,2 @@
+{% load i18n %}
+{% if contact_email %}<a href='mailto:{{contact_email}}' id='contactus'>{% trans "contact" %}</a> | {% endif %}
diff --git a/chimere/templates/chimere/main_map.html b/chimere/templates/chimere/main_map.html
index 1e0b5d4..3bf1d95 100644
--- a/chimere/templates/chimere/main_map.html
+++ b/chimere/templates/chimere/main_map.html
@@ -48,10 +48,7 @@
<i class="fa fa-arrow-circle-left" aria-hidden="true"></i> <p>REVENIR AUX CATÉGORIES</p>
</div>
<div class='footer' id='footer-panel'>
- {% if contact_email %}<a href='mailto:{{contact_email}}' id='contactus'>{% trans "contact" %}</a> | {% endif %}
- {% comment%}
- <a href="{% url 'chimere:extra_page' '' 'legal' %}" id='page-legal' class='dyn-page'>{% trans "terms of service & credits" %}</a>
- {% endcomment %}
+ {% include "chimere/blocks/panel_footer.html" %}
</div>
</div>
{% endblock %}