mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-11 07:10:48 +00:00
35 lines
1.0 KiB
Twig
35 lines
1.0 KiB
Twig
{% if type == 'create' %}
|
|
<div class="form-group">
|
|
<label for="{{ name }}_return_to_form" class="col-sm-4 control-label">
|
|
{{ trans('form.returnHere') }}
|
|
</label>
|
|
|
|
<div class="col-sm-8">
|
|
<div class="checkbox">
|
|
<label>
|
|
{{ Html.checkbox('create_another').id(name ~ '_return_to_form') }}
|
|
{{ trans('form.returnHereExplanation') }}
|
|
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if type == 'update' %}
|
|
<div class="form-group">
|
|
<label for="{{ name }}_return_to_edit" class="col-sm-4 control-label">
|
|
{{ trans('form.returnHere') }}
|
|
</label>
|
|
|
|
<div class="col-sm-8">
|
|
<div class="checkbox"><label>
|
|
{{ Html.checkbox('return_to_edit', null).id(name ~ '_return_to_edit') }}
|
|
{{ trans('form.returnHereUpdateExplanation') }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|