{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans "Recommend" %}

{% trans "Please enter your and the recipient's e-mail address, and an optional message." %}

{% block content %}
{% csrf_token %}
{{ form.sender_email.label_tag }} {{ form.sender_email }} {{ form.sender_email.errors }}
{{ form.recipient_email.label_tag }} {{ form.recipient_email }} {{ form.recipient_email.errors }}
{{ form.message.label_tag }} {{ form.message }} {{ form.message.errors }}

{{ form.captcha }} {{ form.captcha.errors }}
{% endblock %}