{% extends 'modal.html.twig' %} {% block title %}{% if mod %}Modifier{%else%}Ajouter{% endif %} une partie{% endblock %} {% block content %} {% if not party.isValidated %}

Partie nécessitant une validation

Cette partie a été proposée par {{ party.getSubmitter.fullName }} le {{ party.getSubmittedDate|date('d/m/y h:i', app_timezone) }}
{% endif %} {{ form_errors(form) }} {{ form_start(form, {action: path(pathController, {id: slotStart.getId}), attr: {'data-turbo-frame': 'modal-content'}}) }}
{{ form_widget(form.gamemasterIsAuthor) }} {{ form_label(form.gamemasterIsAuthor) }} {{ form_help(form.gamemasterIsAuthor) }}
{{ form_row(form.description) }}
{{ form_row(form.minParticipants) }}
{{ form_row(form.maxParticipants) }}
{{ form_widget(form) }}
{% if mod %} Déplacer Supprimer {% endif %} {% if not party.isValidated %} Valider la partie {% endif %}
{{ form_end(form) }} {% endblock %}