{% extends 'admin/base.html.twig' %} {% block title %}Questions | {{ parent() }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block body %}
|
{{ question.content }}
{% if question.type.value == 'text' %}
Texte
{% else %}
Note
{% if question.type.value == 'rating' %}
{% set variant = rating_variants[question.ratingVariant] ?? null %}
{% if variant %}
{% else %}
Aucun label défini pour ce ratingVariant
{% endif %}
{% endif %}
{% endif %}
|
{% if question.isActive %} Active {% else %} Inactive {% endif %} | {{ question.reviewQuestions|length }} | {{ question.createdAt|date('d/m/Y H:i') }} | {{ include('admin/ui/_link_button.html.twig', {link_class:'primary', link_path:path('@Review_admin_question_edit', {'id': question.id}), link_label:'Modifier'}) }} {{ include('@Review/admin/question/_toggle_form.html.twig') }} {{ include('@Review/admin/question/_delete_form.html.twig') }} | |
|
Aucune question trouvée. |
|||||