fix: harden import auth and utility page copy
Some checks failed
CD Pipeline / deploy (push) Failing after 6m19s
Some checks failed
CD Pipeline / deploy (push) Failing after 6m19s
This commit is contained in:
@@ -136,7 +136,7 @@
|
||||
<i class="fas fa-calendar-week me-1" aria-hidden="true"></i>期間快速選擇
|
||||
</label>
|
||||
<select name="data_range" class="form-select" onchange="handleDataRangeChange(this)">
|
||||
<option value="" {% if not request.args.get('data_range') %}selected{% endif %}>-- 請選擇 --</option>
|
||||
<option value="" {% if not request.args.get('data_range') %}selected{% endif %}>選擇期間</option>
|
||||
{% for opt in [(1,'最近 1 個月 (推薦)'), (3,'最近 3 個月'), (6,'最近 6 個月'), (12,'最近 12 個月'), (0,'全部資料')] %}
|
||||
<option value="{{ opt.0 }}" {% if request.args.get('data_range') == opt.0|string %}selected{% endif %}>{{ opt.1 }}</option>
|
||||
{% endfor %}
|
||||
|
||||
Reference in New Issue
Block a user