mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default.twig" %}
 | |
| 
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, budget) }}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|     {{ Form.model(budget, {'class' : 'form-horizontal','id' : 'update','url' : route('budgets.update',budget.id) } ) }}
 | |
|     <input type="hidden" name="id" value="{{ budget.id }}"/>
 | |
|     <div class="row">
 | |
|         <div class="col-lg-6 col-md-12 col-sm-6">
 | |
|             <div class="box box-primary">
 | |
|                 <div class="box-header with-border">
 | |
|                     <h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3>
 | |
|                 </div>
 | |
|                 <div class="box-body">
 | |
|                     {{ ExpandedForm.checkbox('active') }}
 | |
|                     {{ ExpandedForm.text('name') }}
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
|         </div>
 | |
|         <div class="col-lg-6 col-md-12 col-sm-6">
 | |
|             <!-- 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','budget') }}
 | |
|                 </div>
 | |
|                 <div class="box-footer">
 | |
|                     <button type="submit" class="btn pull-right btn-success">{{ 'update_budget'|_ }}</button>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     {{ Form.close|raw }}
 | |
| 
 | |
| {% endblock %}
 |