engelsystem/resources/views/admin/user/edit-shirt.twig

57 lines
2.0 KiB
Twig
Raw Normal View History

2021-09-24 20:28:51 +02:00
{% extends "layouts/app.twig" %}
{% import 'macros/base.twig' as m %}
{% import 'macros/form.twig' as f %}
2023-01-27 21:01:23 +01:00
{% block title %}
{{ is_tshirt ? __('user.edit.shirt') : __('user.edit.goodie') }}
2023-01-27 21:01:23 +01:00
{% endblock %}
2021-09-24 20:28:51 +02:00
{% block content %}
<div class="container">
<h1>{{ block('title') }}</h1>
{% include 'layouts/parts/messages.twig' %}
<form method="post">
{{ csrf() }}
<div class="row">
{% if is_tshirt %}
2023-01-27 21:01:23 +01:00
<div class="col-md-6">
{{ f.select('shirt_size', __('user.shirt_size'), config('tshirt_sizes'), {
'selected': userdata.personalData.shirt_size,
2023-05-03 17:51:43 +02:00
'required': true,
'required_icon': true,
'default_option': __('form.select_placeholder'),
}) }}
2023-01-27 21:01:23 +01:00
</div>
{% endif %}
2021-10-26 16:08:27 +02:00
<div class="col-md-6">
{{ f.switch('arrived', __('user.arrived'), {
'checked': userdata.state.arrived,
'disabled': not has_permission_to('admin_arrive'),
}) }}
2021-09-24 20:28:51 +02:00
{% if userdata.state.force_active %}
{{ f.switch('force_active', __('user.force_active'), {
'checked': true,
'disabled': true,
}) }}
2021-09-24 20:28:51 +02:00
{% endif %}
{{ f.switch('active', __('user.active'), {
'checked': userdata.state.active,
}) }}
2021-10-26 16:08:27 +02:00
{{ f.switch('got_shirt', is_tshirt ? __('user.got_shirt') : __('user.got_goodie'), {
'checked': userdata.state.got_shirt,
}) }}
2021-09-24 20:28:51 +02:00
</div>
<div class="col-md-12">
{{ f.submit(__('form.save')) }}
</div>
</div>
</form>
</div>
{% endblock %}