mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default.twig" %}
 | |
| {% block content %}
 | |
|     {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, what)  }}
 | |
|     <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="panel panel-primary">
 | |
|                     <div class="panel-heading">
 | |
|                         <i class="fa {{ subTitleIcon }}"></i> {{ 'mandatoryFields'|_ }}
 | |
|                     </div>
 | |
|                     <div class="panel-body">
 | |
|                         {{ ExpandedForm.text('name') }}
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
|             <div class="col-lg-6 col-md-6 col-sm-12">
 | |
| 
 | |
|                 {% if what == 'asset' %}
 | |
|                     <div class="panel panel-default">
 | |
|                         <div class="panel-heading">
 | |
|                             <i class="fa fa-smile-o"></i> {{ 'optionalFields'|_ }}
 | |
|                         </div>
 | |
|                         <div class="panel-body">
 | |
| 
 | |
|                             {{ 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="panel panel-default">
 | |
|                     <div class="panel-heading">
 | |
|                         <i class="fa fa-bolt"></i> {{ 'options'|_ }}
 | |
|                     </div>
 | |
|                     <div class="panel-body">
 | |
|                         {{ ExpandedForm.optionsList('create','account') }}
 | |
|                     </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">
 | |
|                         <i class="fa fa-plus-circle"></i> {{ ('store_new_' ~ what ~ '_account')|_ }}
 | |
|                     </button>
 | |
|                 </p>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
| </form>
 | |
| {% endblock %}
 |