{% extends 'manage/users/master.twig' %} {% from 'macros.twig' import pagination, container_title, avatar %} {% from '_layout/input.twig' import input_hidden, input_csrf, input_text, input_checkbox, input_select %} {% block manage_content %}
{{ container_title(' ' ~ (note_new ? ('Adding mod note to ' ~ note_user.username) : ('Editing mod note #' ~ note_info.id))) }}
{{ input_csrf() }}
{{ note_info.title|default() }}
{{ input_text('mn_title', '', note_info.title|default(), 'text', '', true, null, 1) }}
{% if not note_new %} {% endif %}
{% if note_author is not null %} {% endif %} {% if not note_new %}
{% endif %}
{% if not note_new and note_info.hasBody %}
{{ note_info.body|parse_text(2)|raw }}
{% else %}
This note has no additional content.
{% endif %}
{% endblock %}