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

96 lines
4.4 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 %}
{{ Breadcrumbs.render(Route.getCurrentRoute().getName(), account) }}
2015-06-19 20:59:14 +02:00
{% endblock %}
2015-05-01 22:44:35 +02:00
{% block content %}
2015-06-22 17:55:37 +02:00
{{ Form.model(account, {'class' : 'form-horizontal','id' : 'update','url' : route('accounts.update',account.id) } ) }}
2015-05-01 22:44:35 +02:00
2015-06-22 17:55:37 +02:00
<input type="hidden" name="id" value="{{ account.id }}"/>
2015-05-01 22:44:35 +02:00
2015-06-22 17:55:37 +02:00
<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">
2015-06-22 17:55:37 +02:00
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3>
</div>
<div class="box-body">
{{ ExpandedForm.text('name') }}
2018-04-28 05:40:08 +02:00
{% if account.accountType.type == 'Default account' or account.accountType.type == 'Asset account' %}
{{ ExpandedForm.currencyList('currency_id', null, {helpText:'account_default_currency'|_}) }}
{% endif %}
2015-06-22 17:55:37 +02:00
</div>
2015-05-01 22:44:35 +02:00
</div>
2015-05-01 23:35:35 +02:00
2015-05-01 22:44:35 +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">
2015-06-22 17:55:37 +02:00
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'optionalFields'|_ }}</h3>
</div>
<div class="box-body">
2015-07-03 12:51:14 +02:00
{{ ExpandedForm.text('iban') }}
2016-11-28 18:55:56 +01:00
{{ ExpandedForm.text('BIC', null, {maxlength: 11}) }}
{% if preFilled.accountRole == 'ccAsset' %}
{{ ExpandedForm.text('accountNumber', null , {label:trans('form.creditCardNumber')}) }}
{% else %}
{{ ExpandedForm.text('accountNumber') }}
{% endif %}
2016-02-11 06:30:09 +01:00
2015-06-22 17:55:37 +02:00
{% if account.accounttype.type == 'Default account' or account.accounttype.type == 'Asset account' %}
{# get opening balance entry for this thing! #}
2018-04-28 05:40:08 +02:00
{{ ExpandedForm.amountNoCurrency('openingBalance',null) }}
2015-06-22 17:55:37 +02:00
{{ ExpandedForm.date('openingBalanceDate') }}
2017-01-21 09:07:10 +01:00
{{ ExpandedForm.select('accountRole', roles) }}
2018-04-28 05:40:08 +02:00
{{ ExpandedForm.amountNoCurrency('virtualBalance',null) }}
2015-05-01 22:44:35 +02:00
2015-06-22 17:55:37 +02:00
{% endif %}
2017-12-30 21:04:04 +01:00
{{ ExpandedForm.textarea('notes',null,{helpText: trans('firefly.field_supports_markdown')}) }}
{{ ExpandedForm.checkbox('active','1', preFilled.active) }}
2015-06-22 17:55:37 +02:00
</div>
2015-05-01 22:44:35 +02:00
</div>
2018-01-12 18:42:48 +01:00
{# panel for credit card options #}
2017-12-13 18:46:30 +01:00
{% if preFilled.accountRole == 'ccAsset' %}
2015-06-22 17:55:37 +02:00
<div class="box">
<div class="box-header with-border">
2016-04-20 17:10:35 +02:00
<h3 class="box-title">{{ 'credit_card_options'|_ }}</h3>
2015-06-22 17:55:37 +02:00
</div>
<div class="box-body">
{{ 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.'}) }}
</div>
</div>
{% endif %}
2018-01-12 18:42:48 +01:00
{# panel for options #}
2015-06-22 17:55:37 +02:00
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'options'|_ }}</h3>
</div>
<div class="box-body">
{{ ExpandedForm.optionsList('update','account') }}
</div>
<div class="box-footer">
<button type="submit" class="btn pull-right btn-success">
{{ ('update_' ~ what ~ '_account')|_ }}
</button>
</div>
2015-05-01 22:44:35 +02:00
</div>
</div>
</div>
2015-06-22 17:55:37 +02:00
{{ Form.close|raw }}
2015-05-01 22:44:35 +02:00
{% endblock %}
{% block scripts %}
<script type="text/javascript" src="js/lib/modernizr-custom.js?v={{ FF_VERSION }}"></script>
<script type="text/javascript" src="js/lib/jquery-ui.min.js?v={{ FF_VERSION }}"></script>
<script type="text/javascript" src="js/ff/accounts/edit.js?v={{ FF_VERSION }}"></script>
{% endblock %}
{% block styles %}
<link href="css/jquery-ui/jquery-ui.structure.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" media="all">
<link href="css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" media="all">
{% endblock %}