{% extends "base_search.html" %} {% comment %} Copyright (C) 2018-2025 by BDE ENS Paris-Saclay SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load render_table from django_tables2 %} {% load i18n %} {% block content %}

{{ title }}

{% block extra_inside_card %} {% endblock %}
{% if table.data %} {% render_table table %} {% else %}
{% trans "There is no results." %}
{% endif %}

{% trans "Meal served" %}

{% if can_add_meal %} {% endif %} {% if served.data %} {% render_table served %} {% else %}
{% trans "There is no meal served." %}
{% endif %}

{% trans "Free food" %}

{% if open.data %} {% render_table open %} {% else %}
{% trans "There is no free food." %}
{% endif %}
{% if club_tables %}

{% trans "Food of your clubs" %}

{% for table in club_tables %}

{% trans "Food of club" %} {{ table.prefix }}

{% if table.data %} {% render_table table %} {% else %}
{% trans "Yours club has not food yet." %}
{% endif %}
{% endfor %} {% endif %} {% endblock %}