{% extends 'admin/base.html' %} {% block title %}{{ t('popup_manager.nav_label') }}{% endblock %} {% block content %}
{{ t('table.all') }} {{ t('popup_manager.status_enabled') }} {{ t('popup_manager.status_disabled') }}
{% if groups %}
{% for row in groups %} {% endfor %}
{{ t('popup_manager.col_name') }} {{ t('popup_manager.col_languages') }} {{ t('popup_manager.col_behavior') }} {{ t('table.status') }} {{ t('table.updated_date') }} {{ t('table.actions') }}
{{ row.primary.name }} {% for v in row.versions %} {{ v.language|upper }} {% endfor %} ๏ผ‹ {{ t('popup_manager.trigger_' + row.primary.trigger_type) }} ยท {% if row.primary.target_type == 'all' %}{{ t('popup_manager.target_all') }}{% else %}{{ t('popup_manager.target_custom') }}{% endif %} {% if row.primary.enabled %} {{ t('popup_manager.status_enabled') }} {% else %} {{ t('popup_manager.status_disabled') }} {% endif %} {% if row.updated %} {{ row.updated|format_date }}
{{ row.updated.strftime('%H:%M') }} {% else %} โ€” {% endif %}
โœ๏ธ {{ t('table.edit') }} ๐ŸŒ {{ t('table.translate') }}
{% else %}
{% if total == 0 and not search_query and status_filter == 'all' and lang_filter == 'all' %}

{{ t('popup_manager.no_popups_yet') }}

{{ t('popup_manager.new_popup') }} {% else %}

{{ t('popup_manager.no_results') }}

{{ t('common.clear') }} {% endif %}
{% endif %}
{% endblock %}