Lines 156-161
Link Here
|
156 |
<th>Searchable</th> |
156 |
<th>Searchable</th> |
157 |
[% END %] |
157 |
[% END %] |
158 |
<th>Repeatable</th> |
158 |
<th>Repeatable</th> |
|
|
159 |
<th>System</th> |
159 |
<th class="noExport">Actions</th> |
160 |
<th class="noExport">Actions</th> |
160 |
</tr> |
161 |
</tr> |
161 |
</thead> |
162 |
</thead> |
Lines 181-189
Link Here
|
181 |
<td> |
182 |
<td> |
182 |
[% IF field.repeatable %]Yes[% ELSE %]No[% END %] |
183 |
[% IF field.repeatable %]Yes[% ELSE %]No[% END %] |
183 |
</td> |
184 |
</td> |
|
|
185 |
<td> |
186 |
[% IF field.is_system %]Yes[% ELSE %]No[% END %] |
187 |
</td> |
184 |
<td class="actions"> |
188 |
<td class="actions"> |
|
|
189 |
[% IF !field.is_system %] |
185 |
<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="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> |
186 |
<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> |
191 |
<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> |
|
|
192 |
[% END %] |
187 |
</td> |
193 |
</td> |
188 |
</tr> |
194 |
</tr> |
189 |
[% END %] |
195 |
[% END %] |
190 |
- |
|
|