engelsystem/resources/views/admin/locations/edit.twig

67 lines
2.7 KiB
Twig

{% extends 'admin/locations/index.twig' %}
{% import 'macros/base.twig' as m %}
{% import 'macros/form.twig' as f %}
{% block title %}{{ location ? __('location.edit.title') : __('location.create.title') }}{% endblock %}
{% block row_content %}
<form method="post">
{{ csrf() }}
{{ f.hidden('id', location ? location.id : '') }}
<div class="row">
<div class="col-lg-6">
{{ f.input('name', __('general.name'), {
'required': true,
'required_icon': true,
'value': f.formData('location', location ? location.name : ''),
}) }}
{{ f.input('dect', __('general.dect'), {
'value': f.formData('dect', location ? location.dect : ''),
}) }}
{{ f.input('map_url', __('location.map_url'), {
'type': 'url',
'value': f.formData('map_url', location ? location.map_url : ''),
'info': __('location.map_url.info'),
}) }}
{{ f.textarea('description', __('general.description'), {
'value': f.formData('description', location ? location.description : ''),
'rows': 5,
'info': __('form.markdown')
}) }}
</div>
<div class="col-lg-6">
<h4>{{ __('location.required_angels') }}</h4>
{% for types in angel_types.chunk(3) %}
<div class="row">
{% for angel_type in types %}
{% set needed = needed_angel_types ? needed_angel_types.where('angel_type_id', angel_type.id).first() : null %}
{% set name = 'angel_type_' ~ angel_type.id %}
<div class="col-md-4">
{{ f.number(name, angel_type.name, {
'value': f.formData(name, needed ? needed.count : 0),
'min': 0,
'step': 1,
}) }}
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
<div class="col-md-12">
<div class="btn-group">
{{ f.submit(__('form.save'), {'icon_left': 'save'}) }}
{% if location %}
{{ f.submit(__('form.delete'), {'name': 'delete', 'btn_type': 'danger', 'icon_left': 'trash'}) }}
{% endif %}
</div>
</div>
</form>
{% endblock %}