{% extends "base.html" %} {% block title %}暫時規範總表{% endblock %} {% block content %}

暫時規範總表

{% if current_user.role in ['editor', 'admin'] %} 建立新規範 {% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {# This block is now handled by the Toast container in base.html #} {% endif %} {% endwith %}
{% for spec in specs %} {% endfor %}
編號 主題 申請者 建立日期 結束日期 狀態 操作
{{ spec.spec_code }} {{ spec.title }} {{ spec.applicant }} {{ spec.created_at.strftime('%Y-%m-%d') }} {{ spec.end_date.strftime('%Y-%m-%d') }} {% if spec.status == 'active' %} 已生效 {% elif spec.status == 'pending_approval' %} 待生效 {% elif spec.status == 'terminated' %} 已終止 {% else %} 已過期 {% endif %} {# 只有 admin 才能看到啟用按鈕 #} {% if current_user.role == 'admin' %} {% if spec.status == 'pending_approval' %} {% endif %} {% endif %} {# editor 或 admin 都能看到展延跟終止按鈕 #} {% if current_user.role in ['editor', 'admin'] %} {% if spec.status == 'active' %} {% endif %} {% endif %} {# Admin 專屬的刪除按鈕 #} {% if current_user.role == 'admin' %}
{% endif %} {# 下載按鈕 #} {% if spec.status == 'pending_approval' %} {# 待生效狀態的下載按鈕 #} {% if current_user.role in ['editor', 'admin'] %} {% endif %} {% elif spec.uploads %} {# 其他狀態(已生效、終止等),只提供已簽核的 PDF 下載 #} {% endif %}
{% endblock %}