mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default.twig" %}
 | |
| 
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
| 
 | |
|     <form method="POST" action="{{ route('budgets.store') }}" accept-charset="UTF-8" class="form-horizontal" id="store">
 | |
|         <input name="_token" type="hidden" value="{{ csrf_token() }}">
 | |
|         <input name="active" type="hidden" value="1">
 | |
| 
 | |
|         <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">
 | |
|                 <!-- 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('create','budget') }}
 | |
|                     </div>
 | |
|                     <div class="box-footer">
 | |
|                         <button type="submit" class="btn pull-right btn-success">{{ 'store_new_budget'|_ }}</button>
 | |
|                     </div>
 | |
|                 </div>
 | |
| 
 | |
|             </div>
 | |
| 
 | |
|         </div>
 | |
|     </form>
 | |
| 
 | |
| 
 | |
| {% endblock %}
 |