{% extends "misago/modusers/base.html" %} {% load i18n misago_capture misago_forms %} {% block title %} {{ profile }}: {% trans "Warn" %} | {{ block.super }} {% endblock title %} {% block action-name %} {% trans "Warn" %} {% endblock action-name %} {% block action-content %}
{% csrf_token %}

{{ form.reason.label }}

{% include "misago/form_errors.html" %}
{{ form.reason.help_text }}
{% form_input form.reason %}

{% trans "Current warning level" %}

{% if current_level %}

{{ current_level }}

{% if current_level.is_replying_disallowed %}

{% trans "Replying are forbidden." %}

{% elif current_level.is_replying_moderated %}

{% trans "New replies are moderated." %}

{% else %}

{% trans "No restrictions on posting replies." %}

{% endif %} {% if current_level.is_starting_threads_disallowed %}

{% trans "Starting threads is forbidden." %}

{% elif current_level.is_starting_threads_moderated %}

{% trans "New threads are moderated." %}

{% else %}

{% trans "No restrictions on starting threads." %}

{% endif %} {% else %}

{% trans "None" %}

{% trans "No warning level is set." %}

{% endif %}

{% trans "Next level" %}

{{ next_level }}

{% if next_level.is_replying_disallowed %}

{% trans "Replying are forbidden." %}

{% elif next_level.is_replying_moderated %}

{% trans "New replies are moderated." %}

{% else %}

{% trans "No restrictions on posting replies." %}

{% endif %} {% if next_level.is_starting_threads_disallowed %}

{% trans "Starting threads is forbidden." %}

{% elif next_level.is_starting_threads_moderated %}

{% trans "New threads are moderated." %}

{% else %}

{% trans "No restrictions on starting threads." %}

{% endif %}
{% endblock action-content %}