{% extends "base.html" %} {% load i18n %} {% load static %} {% block extrahead %}{{ block.super }} {% endblock %} {% block title %}{% trans "Contact" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Contact me by e-mail" %}

{% trans "You can send an e-mail to me with this form, except if you are trying to sell something — no thanks." %}

{% csrf_token %}

{% blocktrans with form.captcha_ref.value as captcha_value %}Copy this code in the field below: {{ captcha_value }}.{% endblocktrans %}

{{ form.as_p }}

{% endblock %}