mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default.twig" %}
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, what) }}
 | |
| {% endblock %}
 | |
| {% block content %}
 | |
| 
 | |
|     <form action="{{ route('accounts.store') }}" method="post" id="store" class="form-horizontal">
 | |
|         <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
 | |
|         <input type="hidden" name="what" value="{{ what }}"/>
 | |
| 
 | |
|         <div class="row">
 | |
|             <div class="col-lg-6 col-md-6 col-sm-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') }}
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
|             <div class="col-lg-6 col-md-6 col-sm-12">
 | |
| 
 | |
|                 {% if what == 'asset' %}
 | |
|                     <div class="box">
 | |
|                         <div class="box-header with-border">
 | |
|                             <h3 class="box-title">{{ 'optionalFields'|_ }}</h3>
 | |
|                         </div>
 | |
|                         <div class="box-body">
 | |
| 
 | |
|                             {{ ExpandedForm.text('iban') }}
 | |
|                             {{ ExpandedForm.balance('openingBalance') }}
 | |
|                             {{ ExpandedForm.date('openingBalanceDate', phpdate('Y-m-d')) }}
 | |
|                             {{ ExpandedForm.select('accountRole', Config.get('firefly.accountRoles'),null,{'helpText' : 'Any extra options resulting from your choice can be set later.'}) }}
 | |
|                             {{ ExpandedForm.balance('virtualBalance') }}
 | |
| 
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 {% endif %}
 | |
| 
 | |
|                 <div class="box">
 | |
|                     <div class="box-header with-border">
 | |
|                         <h3 class="box-title">{{ 'options'|_ }}</h3>
 | |
|                     </div>
 | |
|                     <div class="box-body">
 | |
|                         {{ ExpandedForm.optionsList('create','account') }}
 | |
|                     </div>
 | |
|                     <div class="box-footer">
 | |
|                         <button type="submit" class="btn pull-right btn-success">
 | |
|                             {{ ('store_new_' ~ what ~ '_account')|_ }}
 | |
|                         </button>
 | |
|                     </div>
 | |
|                 </div>
 | |
| 
 | |
|             </div>
 | |
|         </div>
 | |
|     </form>
 | |
| {% endblock %}
 |