firefly-iii/resources/twig/accounts/edit.twig

76 lines
2.8 KiB
Twig
Raw Normal View History

2015-05-01 15:44:35 -05:00
{% extends "./layout/default.twig" %}
2015-06-19 13:59:14 -05:00
{% block breadcrumbs %}
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute().getName(), account) }}
{% endblock %}
2015-05-01 15:44:35 -05:00
{% block content %}
2015-05-01 16:35:35 -05:00
{{ Form.model(account, {'class' : 'form-horizontal','id' : 'update','url' : route('accounts.update',account.id) } ) }}
2015-05-01 15:44:35 -05:00
2015-05-01 16:35:35 -05:00
<input type="hidden" name="id" value="{{account.id}}" />
2015-05-01 15:44:35 -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-05-09 15:42:45 -05:00
<i class="fa {{ subTitleIcon }}"></i> {{ 'mandatoryFields'|_ }}
2015-05-01 15:44:35 -05:00
</div>
2015-06-20 00:29:25 -05:00
<div class="box-body">
2015-05-01 16:35:35 -05:00
{{ ExpandedForm.text('name') }}
2015-05-01 15:44:35 -05:00
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
2015-06-20 00:29:25 -05:00
<div class="box">
<div class="box-header with-border">
2015-05-09 15:42:45 -05:00
<i class="fa fa-smile-o"></i> {{ 'optionalFields'|_ }}
2015-05-01 15:44:35 -05:00
</div>
2015-06-20 00:29:25 -05:00
<div class="box-body">
2015-05-01 16:35:35 -05:00
{% if account.accounttype.type == 'Default account' or account.accounttype.type == 'Asset account' %}
{{ ExpandedForm.balance('openingBalance',null, {'currency' : openingBalance ? openingBalance.transactionCurrency : null}) }}
{{ ExpandedForm.date('openingBalanceDate') }}
{{ ExpandedForm.select('accountRole',Config.get('firefly.accountRoles')) }}
{{ ExpandedForm.balance('virtualBalance',null) }}
{% endif %}
{{ ExpandedForm.checkbox('active','1') }}
2015-05-01 15:44:35 -05:00
</div>
</div>
<!-- panel for credit card options -->
2015-05-01 16:35:35 -05:00
{% if Session.get('preFilled').accountRole == 'ccAsset' %}
2015-06-20 00:29:25 -05:00
<div class="box">
<div class="box-header with-border">
2015-05-01 15:44:35 -05:00
<i class="fa fa-credit-card"></i> Credit card options
</div>
2015-06-20 00:29:25 -05:00
<div class="box-body">
2015-05-01 16:35:35 -05:00
{{ ExpandedForm.select('ccType',Config.get('firefly.ccTypes')) }}
{{ ExpandedForm.date('ccMonthlyPaymentDate',null,{'helpText' : 'Select any year and any month, it will be ignored anway. Only the day of the month is relevant.'}) }}
2015-05-01 15:44:35 -05:00
</div>
</div>
2015-05-01 16:35:35 -05:00
{% endif %}
2015-05-01 15:44:35 -05:00
2015-05-01 16:35:35 -05:00
<!-- panel for options -->
2015-06-20 00:29:25 -05:00
<div class="box">
<div class="box-header with-border">
2015-05-09 15:42:45 -05:00
<i class="fa fa-bolt"></i> {{ 'options'|_ }}
2015-05-01 15:44:35 -05:00
</div>
2015-06-20 00:29:25 -05:00
<div class="box-body">
2015-05-01 16:35:35 -05:00
{{ ExpandedForm.optionsList('update','account') }}
2015-05-01 15:44:35 -05:00
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<p>
<button type="submit" class="btn btn-lg btn-success">
2015-05-21 00:30:38 -05:00
{{ ('update_' ~ what ~ '_account')|_ }}
2015-05-01 15:44:35 -05:00
</button>
</p>
</div>
</div>
2015-05-01 16:35:35 -05:00
</form>
2015-05-01 15:44:35 -05:00
{% endblock %}