{% 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 %} {{ macro.get_page_list(page_list, page) }} {% endif %} {% endblock %}
是否确认留言?请注意网络用语文明。