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

{% trans "Contact Form" %}

{% if user.is_authenticated %}

{% trans "Please enter your message." %}

{% trans "The answer will be sent to " %}{{ user.email }}

{% csrf_token %} {% include 'core/partials/form_fields.html' %}
{% else %}

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

{% endif %} {% endblock %}