暫時規範系統
{% if current_user.is_authenticated %} {% if current_user.role in ['editor', 'admin'] %}
暫時規範建立
{% endif %}
總表檢視
{% if current_user.role == 'admin' %}
權限管理
{% endif %}
登出
{% else %}
登入
{% endif %}
{% block content %}{% endblock %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
通知
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% block scripts %}{% endblock %}