{% extends "base.html" %} {% block title %}臨時規格清單{% endblock %} {% block content %}

臨時規格清單

{% if current_user.role in ['editor','admin'] %} 暫時規範建立 {% endif %}
{% for spec in specs %} {% endfor %}
規格編號 標題 申請人 建立日期 結束日期 剩餘天數 狀態 操作
{{ spec.spec_code }} {{ spec.title }} {{ spec.applicant }} {{ spec.created_at|taiwan_date }} {{ spec.end_date|taiwan_date }} {% if spec.status in ['active', 'expired'] %} {% set remaining_days = (spec.end_date - today).days %} {% if remaining_days < 0 %} {% set color_class = 'days-expired' %} {% elif remaining_days <= 3 %} {% set color_class = 'days-critical' %} {% elif remaining_days <= 7 %} {% set color_class = 'days-warning' %} {% else %} {% set color_class = 'days-safe' %} {% endif %} {{ remaining_days if remaining_days >= 0 else '已過期' }} {% else %} - {% endif %} {% if spec.status == 'active' %} 生效中 {% elif spec.status == 'pending_approval' %} 待核准 {% elif spec.status == 'terminated' %} 已終止 {% else %} 已過期 {% endif %} {% if spec.extension_count > 0 %}
已延期 {{ spec.extension_count }} 次 {% if spec.extension_count >= 2 %}
已達延期上限 {% endif %}
{% endif %}
{% if spec.status == 'pending_approval' and current_user.role in ['editor', 'admin'] %} {% endif %} {% if current_user.role == 'admin' and spec.status == 'pending_approval' %} {% endif %} {% if current_user.role in ['editor', 'admin'] and spec.status == 'active' %} {% if spec.extension_count < 2 %} {% else %} {% endif %} {% endif %} {% if current_user.role == 'admin' %}
{% endif %} {% if spec.status == 'pending_approval' %} {% if current_user.role in ['editor', 'admin'] %} {% endif %} {% elif spec.uploads %} {% endif %}
{% endblock %}