mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-08-26 13:17:30 -05:00
19 lines
648 B
PHP
19 lines
648 B
PHP
|
|
<template x-if="true === formBehaviour.customFields.internal_reference">
|
|
<div class="row mb-3">
|
|
<label :for="'internal_reference_' + index"
|
|
class="col-sm-1 col-form-label d-none d-sm-block">
|
|
<em title="{{ __('firefly.internal_reference') }}" class="bi bi-tag-fill"></em>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input type="search"
|
|
class="form-control"
|
|
:id="'internal_reference_' + index"
|
|
x-model="transaction.internal_reference"
|
|
:data-index="index"
|
|
placeholder="{{ __('firefly.internal_reference') }}">
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|