{% extends 'base.html.twig' %} {% block title %}{{ 'user_alerts.title'|trans }} - {{ 'app.name'|trans }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}
{% for label, messages in app.flashes %} {% for message in messages %} {% endfor %} {% endfor %}

{{ 'user_alerts.page_title'|trans }}

{{ 'user_alerts.description'|trans }}

{{ 'user_alerts.active_alerts'|trans }} ({{ alerts|length }})

{% if alerts|length > 0 %} {% for alert in alerts %}
{{ alert.name }}

{% if alert.keywords %} {{ 'user_alerts.keywords'|trans }}: {{ alert.keywords }} {% endif %} {% if alert.category %} | {{ 'user_alerts.category'|trans }}: {{ alert.category.name }} {% endif %} {% if alert.minPrice or alert.maxPrice %} | {{ 'user_alerts.price'|trans }}: {{ alert.minPrice ?? '0' }}€ - {{ alert.maxPrice ?? '∞' }}€ {% endif %}

{{ 'user_alerts.created_on'|trans }} {{ alert.createdAt|date('d/m/Y') }} {% if alert.lastNotificationAt %} | {{ 'user_alerts.last_notification'|trans }}: {{ alert.lastNotificationAt|date('d/m/Y') }} {% endif %}
{{ 'user_alerts.modify'|trans }}
{% endfor %} {% else %}
{{ 'user_alerts.no_alerts'|trans }}

{{ 'user_alerts.no_alerts_description'|trans }}

{% endif %}

{{ 'user_alerts.suggestions.title'|trans }}

{{ 'user_alerts.suggestions.paintings.title'|trans }}

{{ 'user_alerts.suggestions.paintings.description'|trans }}

{{ 'user_alerts.suggestions.furniture.title'|trans }}

{{ 'user_alerts.suggestions.furniture.description'|trans }}

{{ 'user_alerts.suggestions.jewelry.title'|trans }}

{{ 'user_alerts.suggestions.jewelry.description'|trans }}

{% block javascripts %} {{ parent() }} {% endblock %} {% endblock %}