- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
11 lines
303 B
Twig
11 lines
303 B
Twig
<select name="selected_page" id="selected_page">
|
|
<option value="0">-- {% trans 'Select page' %} --</option>
|
|
{% if pdfwork %}
|
|
{% for nr, desc in pages %}
|
|
<option value="{{ nr }}">
|
|
{{ desc }}
|
|
</option>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</select>
|