mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			101 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default" %}
 | |
| 
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute().getName(), account) }}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|     {{ Form.model(account, {'class' : 'form-horizontal','id' : 'update','url' : route('accounts.update',account.id) } ) }}
 | |
| 
 | |
|     <input type="hidden" name="id" value="{{ account.id }}"/>
 | |
| 
 | |
|     <div class="row">
 | |
|         <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
 | |
|             <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') }}
 | |
|                     {% if account.accounttype.type == 'Default account' or account.accounttype.type == 'Asset account' %}
 | |
|                         {# Not really mandatory but OK #}
 | |
|                         {{ ExpandedForm.select('currency_id', currencySelectList) }}
 | |
|                     {% endif %}
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
|         </div>
 | |
|         <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
 | |
|             <div class="box">
 | |
|                 <div class="box-header with-border">
 | |
|                     <h3 class="box-title">{{ 'optionalFields'|_ }}</h3>
 | |
|                 </div>
 | |
|                 <div class="box-body">
 | |
|                     {{ ExpandedForm.text('iban') }}
 | |
|                     {{ ExpandedForm.text('BIC', null, {maxlength: 11}) }}
 | |
|                     {{ ExpandedForm.text('accountNumber') }}
 | |
| 
 | |
|                     {% if account.accounttype.type == 'Default account' or account.accounttype.type == 'Asset account' %}
 | |
| 
 | |
|                         {# get opening balance entry for this thing! #}
 | |
|                         {{ ExpandedForm.nonSelectableBalance('openingBalance',null, {'currency' : currency }) }}
 | |
|                         {{ ExpandedForm.date('openingBalanceDate') }}
 | |
|                         {{ ExpandedForm.select('accountRole', roles) }}
 | |
|                         {{ ExpandedForm.nonSelectableBalance('virtualBalance',null, {'currency' : currency }) }}
 | |
| 
 | |
|                     {% endif %}
 | |
|                     {{ ExpandedForm.checkbox('active','1') }}
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
|             <!-- panel for credit card options -->
 | |
|             {% if Session.get('preFilled').accountRole == 'ccAsset' %}
 | |
|                 <div class="box">
 | |
|                     <div class="box-header with-border">
 | |
|                         <h3 class="box-title">{{ 'credit_card_options'|_ }}</h3>
 | |
|                     </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 %}
 | |
| 
 | |
|             <!-- panel for options  -->
 | |
|             <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>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
|     {{ Form.close|raw }}
 | |
| {% 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>
 | |
| 
 | |
|     {# JS currency list for update thing #}
 | |
|     <script type="text/javascript">
 | |
|         var currencies = [];
 | |
|         {% for currency in allCurrencies %}
 | |
|             currencies[{{ currency.id }}] = "{{ currency.symbol }}";
 | |
|         {% endfor %}
 | |
|     </script>
 | |
| 
 | |
|     <script type="text/javascript" src="js/ff/accounts/edit.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 %}
 |