|
Lines 160-165
Link Here
|
| 160 |
<th>Searchable</th> |
160 |
<th>Searchable</th> |
| 161 |
[% END %] |
161 |
[% END %] |
| 162 |
<th>Repeatable</th> |
162 |
<th>Repeatable</th> |
|
|
163 |
<th>System</th> |
| 163 |
<th class="noExport">Actions</th> |
164 |
<th class="noExport">Actions</th> |
| 164 |
</tr> |
165 |
</tr> |
| 165 |
</thead> |
166 |
</thead> |
|
Lines 185-193
Link Here
|
| 185 |
<td> |
186 |
<td> |
| 186 |
[% IF field.repeatable %]Yes[% ELSE %]No[% END %] |
187 |
[% IF field.repeatable %]Yes[% ELSE %]No[% END %] |
| 187 |
</td> |
188 |
</td> |
|
|
189 |
<td> |
| 190 |
[% IF field.is_system %]Yes[% ELSE %]No[% END %] |
| 191 |
</td> |
| 188 |
<td class="actions"> |
192 |
<td class="actions"> |
|
|
193 |
[% IF !field.is_system %] |
| 189 |
<a class="btn btn-default btn-xs" href="?op=add_form&field_id=[% field.id | html %]"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a> |
194 |
<a class="btn btn-default btn-xs" href="?op=add_form&field_id=[% field.id | html %]"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a> |
| 190 |
<a class="confirmdelete btn btn-default btn-xs" href="?op=delete&field_id=[% field.id | uri %]&tablename=[% tablename | uri %]"><i class="fa fa-trash-can"></i> Delete</a> |
195 |
<a class="confirmdelete btn btn-default btn-xs" href="?op=delete&field_id=[% field.id | uri %]&tablename=[% tablename | uri %]"><i class="fa fa-trash-can"></i> Delete</a> |
|
|
196 |
[% END %] |
| 191 |
</td> |
197 |
</td> |
| 192 |
</tr> |
198 |
</tr> |
| 193 |
[% END %] |
199 |
[% END %] |
| 194 |
- |
|
|