{% extends "misago/usercp/base.html" %} {% load i18n misago_editor %} {% block page %}
{% csrf_token %}

{{ active_page.name }}

{% include "misago/form_errors.html" %} {% if user.signature %}
{% if user.has_valid_signature %}
{{ user.signature_parsed|safe }}
{% else %}

{% trans "Signature is corrupted and can't be displayed." %}

{% endif %}
{% endif %} {% if user.is_signature_locked %}
{% if user.signature_lock_user_message %} {{ user.signature_lock_user_message|escape|urlize|linebreaks }} {% else %}

{% trans "Your signature is locked. You can't change it." %}

{% endif %}
{% else %}
{% editor_body editor %}
{% endif %}
{% endblock page %} {% block javascripts %} {% editor_js editor %} {% endblock javascripts %}