{% load i18n %} {% extends "pages/body.html" %} {% block content %}

{% trans "Send a Private Message" %}

{% trans "Subject" %} {{ form.subject }}{% if form.subject.errors %}
*** {{ form.subject.errors|join:", " }}{% endif %}
{% trans "Text" %} {{ form.contents }}{% if form.contents.errors %}
*** {{ form.contents.errors|join:", " }}{% endif %}


{% endblock %} {% block crumb %}{% trans "Home" %} > {% trans "User Panel" %}{% endblock %}