{% 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 SEO services — no thanks." %}

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

{% csrf_token %} {{ form.as_table }}

{% endblock %}