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

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

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

{% csrf_token %}

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

{{ form.as_p }}
{% endblock %}