mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default.twig" %}
 | |
| 
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, piggyBank) }}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
| 
 | |
|     {{ Form.open({'class' : 'form-horizontal','id' : 'store','url' : route('bills.store')}) }}
 | |
| 
 | |
| <div class="row">
 | |
|     <div class="col-lg-6 col-md-12 col-sm-6">
 | |
|         <div class="panel panel-primary">
 | |
|             <div class="panel-heading">
 | |
|                 <i class="fa fa-exclamation-circle"></i> {{ 'mandatoryFields'|_ }}
 | |
|             </div>
 | |
|             <div class="panel-body">
 | |
|                 {{ ExpandedForm.text('name') }}
 | |
|                 {{ ExpandedForm.tags('match') }}
 | |
|                 {{ ExpandedForm.amount('amount_min') }}
 | |
|                 {{ ExpandedForm.amount('amount_max') }}
 | |
|                 {{ ExpandedForm.date('date',phpdate('Y-m-d')) }}
 | |
|                 {{ ExpandedForm.select('repeat_freq',periods,'monthly') }}
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|     </div>
 | |
|     <div class="col-lg-6 col-md-12 col-sm-6">
 | |
|         <div class="panel panel-default">
 | |
|             <div class="panel-heading">
 | |
|                 <i class="fa fa-smile-o"></i> {{ 'optionalFields'|_ }}
 | |
|             </div>
 | |
|             <div class="panel-body">
 | |
|                 {{ ExpandedForm.integer('skip',0) }}
 | |
|                 {{ ExpandedForm.checkbox('automatch',1,true) }}
 | |
|                 {{ ExpandedForm.checkbox('active',1,true) }}
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <!-- panel for options -->
 | |
|         <div class="panel panel-default">
 | |
|             <div class="panel-heading">
 | |
|                 <i class="fa fa-bolt"></i> {{ 'options'|_ }}
 | |
|             </div>
 | |
|             <div class="panel-body">
 | |
|             {{ ExpandedForm.optionsList('create','bill') }}
 | |
|         </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 bill
 | |
|             </button>
 | |
|         </p>
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| </form>
 | |
| 
 | |
| {% endblock %}
 | |
| 
 | |
| {% block styles %}
 | |
|     <link href="css/bootstrap-tagsinput.css" type="text/css" rel="stylesheet" media="all">
 | |
| {% endblock %}
 | |
| {% block scripts %}
 | |
|     <script type="text/javascript" src="js/bootstrap-tagsinput.min.js"></script>
 | |
| {% endblock %}
 |