mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default" %}
 | |
| 
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.render }}
 | |
| {% endblock %}
 | |
| {% block content %}
 | |
|     <form method="POST" action="{{ route('import.job.configuration.post', [importJob.key]) }}" accept-charset="UTF-8"
 | |
|           class="form-horizontal">
 | |
|         <input name="_token" type="hidden" value="{{ csrf_token() }}">
 | |
| 
 | |
|         <div class="row">
 | |
|             <div class="col-lg-12">
 | |
|                 <div class="box">
 | |
|                     <div class="box-header with-border">
 | |
|                         <h3 class="box-title">{{ trans('import.job_config_input') }}</h3>
 | |
|                     </div>
 | |
|                     <div class="box-body">
 | |
|                         {{ ExpandedForm.text('fints_url', data.fints_url, {helpText: trans('import.job_config_fints_url_help'), required: true}) }}
 | |
|                         {{ ExpandedForm.text('fints_port', data.fints_port, {helpText: trans('import.job_config_fints_port_help'), required: true}) }}
 | |
|                         {{ ExpandedForm.text('fints_bank_code', data.fints_bank_code, {required: true}) }}
 | |
|                         {{ ExpandedForm.text('fints_username', data.fints_username, {helpText: trans('import.job_config_fints_username_help'), required: false}) }}
 | |
|                         {{ ExpandedForm.password('fints_password', {required: true}) }}
 | |
|                         {{ ExpandedForm.checkbox('apply_rules', 1, true) }}
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|         <div class="row">
 | |
|             <div class="col-lg-12">
 | |
|                 <div class="box">
 | |
|                     <div class="box-body">
 | |
|                         <button type="submit" class="btn btn-success pull-right">
 | |
|                             {{ ('submit')|_ }} <i class="fa fa-arrow-right"></i>
 | |
|                         </button>
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </form>
 | |
| {% endblock %}
 |