mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-01 19:09:45 +00:00
28 lines
605 B
Twig
28 lines
605 B
Twig
{% extends "@ChillMain/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_calendar_invitations_list' %}
|
|
|
|
{% block title %}{{ 'My invitations list' |trans }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ 'Invitation list' |trans }}</h1>
|
|
|
|
{% if invitations|length == 0 %}
|
|
<p class="chill-no-data-statement">
|
|
{{ "invite.list.none"|trans }}
|
|
</p>
|
|
{% else %}
|
|
{{ include ('@ChillCalendar/Invitations/_list_item.html.twig') }}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{{ parent() }}
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ parent() }}
|
|
{% endblock %}
|