hot fixed..
This commit is contained in:
parent
d0f55bde29
commit
3ade5cb4a3
@ -77,6 +77,12 @@ return [
|
||||
],
|
||||
],
|
||||
|
||||
'transfer' => [
|
||||
'choose_template' => 'Choose transfer template',
|
||||
'second' => 'Second',
|
||||
'third' => 'Third',
|
||||
],
|
||||
|
||||
'default' => [
|
||||
'description' => 'Default account, currency, language of your company',
|
||||
'list_limit' => 'Records Per Page',
|
||||
|
@ -14,7 +14,7 @@
|
||||
<akaunting-modal
|
||||
:show="template.modal"
|
||||
@cancel="template.modal = false"
|
||||
:title="'{{ trans('settings.invoice.choose_template') }}'"
|
||||
:title="'{{ trans('settings.transfer.choose_template') }}'"
|
||||
:message="template.html"
|
||||
:button_cancel="'{{ trans('general.button.save') }}'"
|
||||
:button_delete="'{{ trans('general.button.cancel') }}'">
|
||||
|
@ -10,11 +10,12 @@
|
||||
'class' => 'form-loading-button mb-0',
|
||||
'novalidate' => true
|
||||
]) !!}
|
||||
<div class="row">
|
||||
<div class="row mt-4">
|
||||
<div class="col-md-4 text-center">
|
||||
<div class="bg-print border-radius-default print-edge choose" @click="transfer_form.template='default'">
|
||||
<img src="{{ asset('public/img/transfer_templates/default.png') }}" class="mb-1 mt-3" height="200" alt="Default"/>
|
||||
<label>
|
||||
</br>
|
||||
<label style="font-size: initial;">
|
||||
<input type="radio" name="template" value="default" v-model="transfer_form.template">
|
||||
{{ trans('settings.invoice.default') }}
|
||||
</label>
|
||||
@ -24,7 +25,8 @@
|
||||
<div class="col-md-4 text-center px-2">
|
||||
<div class="bg-print border-radius-default print-edge choose" @click="transfer_form.template='second'">
|
||||
<img src="{{ asset('public/img/transfer_templates/second.png') }}" class="mb-1 mt-3" height="200" alt="Second"/>
|
||||
<label>
|
||||
</br>
|
||||
<label style="font-size: initial;">
|
||||
<input type="radio" name="template" value="second" v-model="transfer_form.template">
|
||||
{{ trans('settings.transfer.second') }}
|
||||
</label>
|
||||
@ -34,7 +36,8 @@
|
||||
<div class="col-md-4 text-center px-0">
|
||||
<div class="bg-print border-radius-default print-edge choose" @click="transfer_form.template='third'">
|
||||
<img src="{{ asset('public/img/transfer_templates/third.png') }}" class="mb-1 mt-3" height="200" alt="Third"/>
|
||||
<label>
|
||||
</br>
|
||||
<label style="font-size: initial;">
|
||||
<input type="radio" name="template" value="third" v-model="transfer_form.template">
|
||||
{{ trans('settings.transfer.third') }}
|
||||
</label>
|
||||
|
Loading…
x
Reference in New Issue
Block a user