{% extends "base.html" %} {% block title %} 留言 {% endblock %} {% block style %} {{ super() }} {% endblock %} {% block content %}
{{ form.hidden_tag() }}
{{ form.content(class="form-control mb-2", rows="5") }} {% for error in form.content.errors %}
{{ error }}
{% endfor %}
{{ form.secret(class="form-check-input") }} {{ form.secret.label(class="form-check-label") }}

{% if current_user.check_role("ReadMsg") %} {# 检查是否具有读取权限 #}
{% for msg in msg_list %} {{ render_msg(msg, show_delete) }} {% endfor %}
{% endif %}
{% endblock %}