-
Benjamin Hättasch authored
Add contact email address to event model Show email link in footer Fix missing event reference in AKDetailView
Benjamin Hättasch authoredAdd contact email address to event model Show email link in footer Fix missing event reference in AKDetailView
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
base_submission.html 332 B
{% extends "base.html" %}
{% load fontawesome %}
{% load i18n %}
{% block footer_custom %}
{% if event.contact_email %}
<h4><a href="mailto://{{ event.contact_email }}">{% fontawesome_icon "envelope" %} {% trans "Write to organizers of this event for questions and comments" %}</a></h4>
{% endif %}
{% endblock %}