{% extends 'superadmin/layout.twig' %} {% block content %}

Тарифы

+ Добавить тариф
{% for alert in get_alerts() %}
{{ alert.message }}
{% endfor %}
{% if plans is empty %}

Тарифов пока нет. Создайте первый тариф.

{% else %} {% for plan in plans %} {% endfor %}
Название Описание Цена Период Лимиты Статус Действия
{{ plan.name }} {% if plan.is_default %} По умолчанию {% endif %} {{ plan.description|default('—') }} {{ plan.price|number_format(0, '', ' ') }} {{ plan.currency }} {% if plan.billing_period == 'monthly' %} Месяц {% elseif plan.billing_period == 'yearly' %} Год {% else %} {{ plan.billing_period }} {% endif %} 👥 до {{ plan.max_users }} чел.
👤 до {{ plan.max_clients }} клиентов
💾 до {{ plan.max_storage }} ГБ
{% if plan.is_active %} Активен {% else %} Неактивен {% endif %} ✏️ 🗑️
{% endif %}
{% endblock %}