mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends './layout/default' %}
 | |
| 
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.render(Route.getCurrentRoute.getName, linkType) }}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
| 
 | |
|     {{ Form.model(linkType, {'class' : 'form-horizontal','id' : 'update','url' : route('admin.links.update', linkType.id) } ) }}
 | |
|     <input type="hidden" name="id" value="{{ linkType.id }}"/>
 | |
|     <input name="_token" type="hidden" value="{{ csrf_token() }}">
 | |
|     <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', null, {helpText: trans('firefly.link_type_help_name')}) }}
 | |
|                     {{ ExpandedForm.text('inward', null, {helpText: trans('firefly.link_type_help_inward')}) }}
 | |
|                     {{ ExpandedForm.text('outward', null, {helpText: trans('firefly.link_type_help_outward')}) }}
 | |
|                 </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','link_type') }}
 | |
|                 </div>
 | |
|                 <div class="box-footer">
 | |
|                     <button type="submit" class="btn pull-right btn-success">
 | |
|                         {{ ('update_link_type')|_ }}
 | |
|                     </button>
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
|         </div>
 | |
| 
 | |
|     </div>
 | |
|     </form>
 | |
| 
 | |
| 
 | |
| {% endblock %}
 |