Files
firefly-iii/resources/views/accounts/create.twig

79 lines
3.2 KiB
Twig
Raw Normal View History

2016-11-06 08:11:43 +01:00
{% extends "./layout/default" %}
2015-06-19 20:59:14 +02:00
{% block breadcrumbs %}
2015-06-22 17:55:37 +02:00
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, what) }}
2015-06-19 20:59:14 +02:00
{% endblock %}
{% block content %}
2015-05-01 22:44:35 +02:00
<form action="{{ route('accounts.store') }}" method="post" id="store" class="form-horizontal">
2015-06-22 17:55:37 +02:00
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
<input type="hidden" name="what" value="{{ what }}"/>
2016-10-22 21:40:31 +02:00
<input type="hidden" name="active" value="1"/>
2015-05-01 22:44:35 +02:00
2015-05-01 23:17:17 +02:00
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
2015-06-20 07:29:25 +02:00
<div class="box box-primary">
<div class="box-header with-border">
2015-06-20 09:54:01 +02:00
<h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3>
2015-05-01 23:17:17 +02:00
</div>
2015-06-20 07:29:25 +02:00
<div class="box-body">
2015-05-01 23:17:17 +02:00
{{ ExpandedForm.text('name') }}
{% if what == 'asset' %}
{# Not really mandatory but OK #}
{{ ExpandedForm.select('currency_id', currencies) }}
{% endif %}
2015-05-01 23:17:17 +02:00
</div>
</div>
2015-05-01 22:44:35 +02:00
</div>
2015-05-01 23:17:17 +02:00
<div class="col-lg-6 col-md-6 col-sm-12">
2016-02-11 06:30:09 +01:00
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'optionalFields'|_ }}</h3>
</div>
<div class="box-body">
2015-05-01 23:17:17 +02:00
{{ ExpandedForm.text('iban') }}
2016-11-28 18:55:56 +01:00
{{ ExpandedForm.text('BIC', null, {maxlength: 11}) }}
{{ ExpandedForm.text('accountNumber') }}
2016-02-11 06:30:09 +01:00
{% if what == 'asset' %}
{{ ExpandedForm.balance('openingBalance') }}
{{ ExpandedForm.date('openingBalanceDate', phpdate('Y-m-d')) }}
2017-01-21 09:07:10 +01:00
{{ ExpandedForm.select('accountRole', roles,null,{'helpText' : 'asset_account_role_help'|_}) }}
2016-02-11 06:30:09 +01:00
{{ ExpandedForm.balance('virtualBalance') }}
{% endif %}
2015-05-01 23:17:17 +02:00
</div>
</div>
2016-02-11 06:30:09 +01:00
2015-06-22 17:55:37 +02:00
2015-06-20 07:29:25 +02:00
<div class="box">
<div class="box-header with-border">
2015-06-20 09:54:01 +02:00
<h3 class="box-title">{{ 'options'|_ }}</h3>
2015-05-01 23:17:17 +02:00
</div>
2015-06-20 07:29:25 +02:00
<div class="box-body">
2015-05-01 23:17:17 +02:00
{{ ExpandedForm.optionsList('create','account') }}
</div>
2015-06-22 17:55:37 +02:00
<div class="box-footer">
<button type="submit" class="btn pull-right btn-success">
{{ ('store_new_' ~ what ~ '_account')|_ }}
</button>
</div>
2015-05-01 23:17:17 +02:00
</div>
2015-05-01 22:44:35 +02:00
</div>
</div>
2015-06-22 17:55:37 +02:00
</form>
{% endblock %}
{% block scripts %}
<script type="text/javascript" src="js/lib/modernizr-custom.js"></script>
<script type="text/javascript" src="js/lib/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/ff/accounts/create.js"></script>
{% endblock %}
{% block styles %}
<link href="css/jquery-ui/jquery-ui.structure.min.css" type="text/css" rel="stylesheet" media="all">
<link href="css/jquery-ui/jquery-ui.theme.min.css" type="text/css" rel="stylesheet" media="all">
{% endblock %}