2015-05-01 15:44:35 -05:00
{% extends "./layout/default.twig" %}
2015-06-19 13:59:14 -05:00
{% block breadcrumbs %}
2015-06-22 10:55:37 -05:00
{{ B readcrumbs .renderIfExists ( R oute .getCurrentRoute .getName , what ) }}
2015-06-19 13:59:14 -05:00
{% endblock %}
{% block content %}
2015-05-01 15:44:35 -05:00
<form action=" {{ route ( 'accounts.store' ) }} " method="post" id="store" class="form-horizontal">
2015-06-22 10:55:37 -05:00
<input type="hidden" name="_token" value=" {{ csrf_token ( ) }} "/>
<input type="hidden" name="what" value=" {{ what }} "/>
2015-05-01 15:44:35 -05:00
2015-05-01 16:17:17 -05:00
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
2015-06-20 00:29:25 -05:00
<div class="box box-primary">
<div class="box-header with-border">
2015-06-20 02:54:01 -05:00
<h3 class="box-title"> {{ 'mandatoryFields' | _ }} </h3>
2015-05-01 16:17:17 -05:00
</div>
2015-06-20 00:29:25 -05:00
<div class="box-body">
2015-05-01 16:17:17 -05:00
{{ E xpandedForm .text ( 'name' ) }}
</div>
</div>
2015-05-01 15:44:35 -05:00
</div>
2015-05-01 16:17:17 -05:00
<div class="col-lg-6 col-md-6 col-sm-12">
{% if what == 'asset' %}
2015-06-20 00:29:25 -05:00
<div class="box">
<div class="box-header with-border">
2015-06-20 02:54:01 -05:00
<h3 class="box-title"> {{ 'optionalFields' | _ }} </h3>
2015-05-01 16:17:17 -05:00
</div>
2015-06-20 00:29:25 -05:00
<div class="box-body">
2015-05-01 16:17:17 -05:00
2015-07-03 05:51:14 -05:00
{{ E xpandedForm .text ( 'iban' ) }}
2015-05-01 16:17:17 -05:00
{{ E xpandedForm .balance ( 'openingBalance' ) }}
{{ E xpandedForm .date ( 'openingBalanceDate' , phpdate ( 'Y-m-d' ) ) }}
2015-05-01 16:35:35 -05:00
{{ E xpandedForm .select ( 'accountRole' , C onfig .get ( 'firefly.accountRoles' ) , null , { 'helpText' : 'Any extra options resulting from your choice can be set later.' } ) }}
2015-05-01 16:17:17 -05:00
{{ E xpandedForm .balance ( 'virtualBalance' ) }}
</div>
</div>
{% endif %}
2015-06-22 10:55:37 -05:00
2015-06-20 00:29:25 -05:00
<div class="box">
<div class="box-header with-border">
2015-06-20 02:54:01 -05:00
<h3 class="box-title"> {{ 'options' | _ }} </h3>
2015-05-01 16:17:17 -05:00
</div>
2015-06-20 00:29:25 -05:00
<div class="box-body">
2015-05-01 16:17:17 -05:00
{{ E xpandedForm .optionsList ( 'create' , 'account' ) }}
</div>
2015-06-22 10:55:37 -05:00
<div class="box-footer">
<button type="submit" class="btn pull-right btn-success">
{{ ( 'store_new_' ~ what ~ '_account' ) | _ }}
</button>
</div>
2015-05-01 16:17:17 -05:00
</div>
2015-05-01 15:44:35 -05:00
</div>
</div>
2015-06-22 10:55:37 -05:00
</form>
2015-05-05 05:51:57 -05:00
{% endblock %}