{% extends 'backoffice/base.html.twig' %} {% block title %}Hello BackofficeController!{% endblock %} {% block body %}

{{ is_granted('ROLE_ADMIN') ? 'All Seasons'|trans : 'Your Seasons'|trans }}

{{ 'Add'|trans }}
{% if seasons %} {% if is_granted('ROLE_ADMIN') %} {% endif %} {% for season in seasons %} {% if is_granted('ROLE_ADMIN') %} {% endif %} {% endfor %}
{{ 'Owner(s)'|trans }}{{ 'Name'|trans }} {{ 'Active Quiz'|trans }} {{ 'Season Code'|trans }} {{ 'Manage'|trans }}
{{ season.owners|map(o => o.email)|join(', ') }}{{ season.name }} {% if season.activeQuiz %} {{ season.activeQuiz.name }} {% else %} {{ 'No active quiz'|trans }} {% endif %} {{ season.seasonCode }} {{ 'Manage'|trans }}
{% else %} {{ 'You have no seasons yet.'|trans }} {% endif %} {% endblock %}