mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends './layout/default' %}
 | |
| 
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.render(Route.getCurrentRoute.getName, piggyBank) }}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|     <form method="post" action="{{ route('piggy-banks.update', piggyBank.id) }}" class="form-horizontal"
 | |
|           accept-charset="UTF-8"
 | |
|           enctype="multipart/form-data">
 | |
|         <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
 | |
| 
 | |
|         <input type="hidden" name="repeats" value="0"/>
 | |
|         <input type="hidden" name="id" value="{{ piggyBank.id }}"/>
 | |
| 
 | |
|         <div class="row">
 | |
|             <div class="col-lg-6 col-md-6 col-sm-12 col-xs-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') }}
 | |
|                         {{ AccountForm.assetAccountList('account_id', null, {label: 'saveOnAccount'|_   }) }}
 | |
|                         {{ ExpandedForm.amountNoCurrency('targetamount') }}
 | |
| 
 | |
|                     </div>
 | |
|                 </div>
 | |
| 
 | |
|             </div>
 | |
|             <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
 | |
|                 <div class="box">
 | |
|                     <div class="box-header with-border">
 | |
|                         <h3 class="box-title">{{ 'optionalFields'|_ }}</h3>
 | |
|                     </div>
 | |
|                     <div class="box-body">
 | |
|                         {{ ExpandedForm.date('startdate') }}
 | |
|                         {{ ExpandedForm.date('targetdate') }}
 | |
|                         {{ ExpandedForm.textarea('notes', null, {helpText: trans('firefly.field_supports_markdown')}) }}
 | |
|                         {{ ExpandedForm.file('attachments[]', {'multiple': 'multiple','helpText': trans('firefly.upload_max_file_size', {'size': uploadSize|filesize}) }) }}
 | |
|                         {{ ExpandedForm.objectGroup() }}
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|         <div class="row">
 | |
|             <div class="col-lg-6 col-md-6 col-sm-12 col-xs-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('update','piggy bank') }}
 | |
|                     </div>
 | |
|                     <div class="box-footer">
 | |
|                         <button type="submit" class="btn btn-success pull-right">
 | |
|                             {{ 'update_piggy_button'|_ }}
 | |
|                         </button>
 | |
|                     </div>
 | |
|                 </div>
 | |
| 
 | |
|             </div>
 | |
|         </div>
 | |
|     </form>
 | |
| {% endblock %}
 | |
| {% block scripts %}
 | |
|     <script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}"
 | |
|             nonce="{{ JS_NONCE }}"></script>
 | |
|     <script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
 | |
|     <script type="text/javascript" src="v1/js/ff/piggy-banks/create.js?v={{ FF_VERSION }}"
 | |
|             nonce="{{ JS_NONCE }}"></script>
 | |
|     {# auto complete for object groups #}
 | |
|     <script type="text/javascript" src="v1/js/lib/typeahead/typeahead.bundle.min.js?v={{ FF_VERSION }}"
 | |
|             nonce="{{ JS_NONCE }}"></script>
 | |
|     <script type="text/javascript" src="v1/js/ff/object-groups/create-edit.js?v={{ FF_VERSION }}"
 | |
|             nonce="{{ JS_NONCE }}"></script>
 | |
| {% endblock %}
 | |
| 
 | |
| {% block styles %}
 | |
|     <link href="v1/css/jquery-ui/jquery-ui.structure.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"
 | |
|           media="all" nonce="{{ JS_NONCE }}">
 | |
|     <link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"
 | |
|           media="all" nonce="{{ JS_NONCE }}">
 | |
| {% endblock %}
 |