{% extends 'core/page.html' %} {% load i18n %} {% block page %}

{% trans "Contact Form" %}

{% if user.is_authenticated %}

{% trans "Please enter your message." %} {% blocktrans with email=user.email trimmed %} The answer will be sent to {{ email }}. {% endblocktrans %}

{% csrf_token %} {{ form }}
{% else %}

{% trans "Please log in to be able to fill the contact form." %}

{% endif %} {% endblock %}