mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
24 lines
906 B
PHP
24 lines
906 B
PHP
<div class="col-lg-3 col-md-6">
|
|
|
|
{!! Former::select("{$section}_select")
|
|
->placeholder(trans("texts.{$fields}"))
|
|
->options($account->getAllInvoiceFields()[$fields])
|
|
->onchange("addField('{$section}')")
|
|
->raw() !!}
|
|
|
|
<div class="table-responsive">
|
|
<table class="field-list">
|
|
<tbody data-bind="sortable: { data: {{ $section }}, as: 'field', afterMove: onDragged }">
|
|
<tr style="cursor:move;background-color:#fff;margin:1px">
|
|
<td>
|
|
<i class="fa fa-close" style="cursor:pointer" title="{{ trans('texts.remove') }}"
|
|
data-bind="click: $root.{{ Utils::toCamelCase('remove' . ucwords($section)) }}"></i>
|
|
<span data-bind="text: window.field_map[field]"></span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|