- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
10 lines
264 B
Twig
10 lines
264 B
Twig
<table id="table_columns" class="noclick">
|
|
<caption class="tblHeaders">{% trans 'Structure' %}</caption>
|
|
<thead>
|
|
<tr>
|
|
{% for header in headers %}
|
|
<th>{{ header }}</th>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|