{% extends 'admin/layout.html.twig' %} {% block title %}{{ title }}{% endblock %} {% block main %}
← Retour

{{ title }}

{# ── Fiche principale ── #}

Informations

{{ form_start(form, {attr: {novalidate: true}}) }}
{% set pedigreeFields = ['pereNom','pereGpere','pereGmere','mereNom','mereGpere','mereGmere'] %} {% for field in form %} {% if 'hidden' not in field.vars.block_prefixes and field.vars.name not in pedigreeFields %}
{% if 'checkbox' in field.vars.block_prefixes %} {{ form_widget(field) }} {{ form_label(field) }} {% else %} {{ form_label(field) }} {{ form_widget(field, {attr: {class: 'form-control'}}) }} {% endif %} {% if field.vars.errors|length %}
{{ form_errors(field) }}
{% endif %}
{% endif %} {% endfor %}

Généalogie

{% for fname in ['pereNom','pereGpere','pereGmere','mereNom','mereGpere','mereGmere'] %} {% set field = form[fname] %}
{{ form_label(field) }} {{ form_widget(field, {attr: {class: 'form-control'}}) }} {% if field.vars.errors|length %}
{{ form_errors(field) }}
{% endif %}
{% endfor %}
Annuler
{{ form_end(form) }}
{# ── Gestion des photos (uniquement en édition) ── #} {% if poulain.id %}

Photos

{% if poulain.photos is not empty %}
{% for photo in poulain.photos %}
{% endfor %}
{% else %}

Aucune photo pour le moment.

{% endif %}
{% endif %} {% endblock %}