2016-11-06 08:11:43 +01:00
|
|
|
{% extends "./layout/default" %}
|
2015-06-19 20:59:14 +02:00
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
2017-12-23 20:46:52 +01:00
|
|
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName) }}
|
2015-06-19 20:59:14 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2015-05-02 11:32:45 +02:00
|
|
|
|
2016-08-27 09:38:58 +02:00
|
|
|
<form method="POST" action="{{ route('piggy-banks.store') }}" accept-charset="UTF-8" class="form-horizontal" id="store">
|
|
|
|
|
<input name="_token" type="hidden" value="{{ csrf_token() }}">
|
|
|
|
|
<input type="hidden" name="repeats" value="0"/>
|
|
|
|
|
<div class="row">
|
2017-06-30 07:17:25 +02:00
|
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
2016-08-27 09:38:58 +02:00
|
|
|
<div class="box box-primary">
|
|
|
|
|
<div class="box-header with-border">
|
|
|
|
|
<h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-body">
|
2015-05-02 11:32:45 +02:00
|
|
|
|
2016-08-27 09:38:58 +02:00
|
|
|
{{ ExpandedForm.text('name') }}
|
2019-08-10 15:09:44 +02:00
|
|
|
{{ AccountForm.activeAssetAccountList('account_id', null, {label: 'saveOnAccount'|_ }) }}
|
2018-04-21 23:48:54 +02:00
|
|
|
{{ ExpandedForm.amountNoCurrency('targetamount') }}
|
2015-05-02 11:32:45 +02:00
|
|
|
|
2016-08-27 09:38:58 +02:00
|
|
|
</div>
|
2015-06-21 10:50:45 +02:00
|
|
|
</div>
|
2015-05-02 11:32:45 +02:00
|
|
|
</div>
|
2017-06-30 07:17:25 +02:00
|
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
2016-08-27 09:38:58 +02:00
|
|
|
<div class="box">
|
|
|
|
|
<div class="box-header with-border">
|
|
|
|
|
<h3 class="box-title">{{ 'optionalFields'|_ }}</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-body">
|
|
|
|
|
{{ ExpandedForm.date('targetdate') }}
|
2018-08-07 19:28:46 +02:00
|
|
|
{{ ExpandedForm.textarea('notes', null, {helpText: trans('firefly.field_supports_markdown')} ) }}
|
2016-08-27 09:38:58 +02:00
|
|
|
</div>
|
2015-06-21 10:50:45 +02:00
|
|
|
</div>
|
2020-03-13 20:56:26 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
2018-01-12 18:42:48 +01:00
|
|
|
{# panel for options #}
|
2016-08-27 09:38:58 +02:00
|
|
|
<div class="box">
|
|
|
|
|
<div class="box-header with-border">
|
|
|
|
|
<h3 class="box-title">{{ 'options'|_ }}</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-body">
|
|
|
|
|
{{ ExpandedForm.optionsList('create','piggy bank') }}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-footer">
|
|
|
|
|
<button type="submit" class="btn btn-success pull-right">
|
|
|
|
|
{{ 'store_piggy_bank'|_ }}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2015-06-21 10:50:45 +02:00
|
|
|
</div>
|
2015-05-02 11:32:45 +02:00
|
|
|
|
2016-08-27 09:38:58 +02:00
|
|
|
</div>
|
2015-06-21 10:50:45 +02:00
|
|
|
</div>
|
2016-08-27 09:38:58 +02:00
|
|
|
</form>
|
2015-05-02 11:32:45 +02:00
|
|
|
{% endblock %}
|
2017-01-20 08:18:52 +01:00
|
|
|
{% block scripts %}
|
2020-01-04 11:16:14 +01:00
|
|
|
<script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
|
|
|
<script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
|
|
|
<script type="text/javascript" src="v1/js/ff/piggy-banks/create.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
2017-01-20 08:18:52 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block styles %}
|
2018-11-02 19:59:29 +01:00
|
|
|
<link href="v1/css/jquery-ui/jquery-ui.structure.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" media="all">
|
|
|
|
|
<link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" media="all">
|
2017-02-05 19:51:58 +01:00
|
|
|
{% endblock %}
|