forked from CGM_Public/pretix_original
Move footer linklist to global template instead of event template
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{% load compress %}
|
||||
{% load staticfiles %}
|
||||
{% load i18n %}
|
||||
{% load safelink %}
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
@@ -40,6 +41,14 @@
|
||||
<footer>
|
||||
{% block footer %}
|
||||
{% endblock %}
|
||||
{% if footer_text %}
|
||||
{{ footer_text }}
|
||||
·
|
||||
{% endif %}
|
||||
{% for f in footer %}
|
||||
<a href="{% safelink f.url %}" target="_blank">{{ f.label }}</a>
|
||||
·
|
||||
{% endfor %}
|
||||
{% include "pretixpresale/base_footer.html" %}
|
||||
</footer>
|
||||
<div id="ajaxerr">
|
||||
|
||||
@@ -64,12 +64,4 @@
|
||||
<a href="{% safelink request.event.settings.imprint_url %}" target="_blank">{% trans "Imprint" %}</a>
|
||||
·
|
||||
{% endif %}
|
||||
{% if footer_text %}
|
||||
{{ footer_text }}
|
||||
·
|
||||
{% endif %}
|
||||
{% for f in footer %}
|
||||
<a href="{% safelink f.url %}" target="_blank">{{ f.label }}</a>
|
||||
·
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user