{% extends "dictionary/base.html" %} {% load functions widget_tweaks i18n filters %} {% block title %}{% trans "contact" context "titleblock" %}{% endblock %} {% block content %}

{% trans "contact" context "titleblock" %}

{% trans "matters to consider" %}

  1. {% blocktrans with faq_url="/faq/" %}please visit frequently asked questions page before submitting reports.{% endblocktrans %}
  2. {% trans "please state your requests and complaints in a comprehensible and concise way." %}
  3. {% trans "we will not notify other authors if you decide to report them, this is done anonymously." %}
  4. {% trans "provide an e-mail address for confirmation and feedback. if you are logged in already, we will use your registered e-mail address." %}
  5. {% trans "if have multiple statements, please consider them all in a report instead of sending them in seperate reports." %}
{% if not user.is_authenticated %}
{% render_field form.reporter_email class="form-control" id="reporter_email" %}
{% else %} {% endif %}
{% render_field form.category class="form-control" id="report_category" %}
{% render_field form.subject|attr:"autofocus" class="form-control" id="reporter_subject" %}
{% render_field form.content rows="5" class="form-control" id="reporter_content" %}
{% csrf_token %}
{% endblock %}