{% extends 'base.html' %} {% block title %}⚡ Mis Reglas de Alerta{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
⚡ {{ _('Mis Reglas de Alerta') }} {{ reglas|length }}
{{ _('Nueva Regla') }}
{% if reglas %} {% for rule in reglas %}
{{ rule.symbol }} {{ rule.strategy.replace('_', ' ') }} {{ rule.risk_level.replace('_', ' ').title() }}
{% if rule.min_credit %} {{ _('Crédito') }} ≥ {{ rule.min_credit }} {% endif %} {% if rule.time_from and rule.time_to %} {{ rule.time_from }} – {{ rule.time_to }} NY {% endif %} {% if rule.last_fired_at %} {{ _('Último disparo') }}: {{ rule.last_fired_at.strftime('%d/%m %H:%M') }} {% endif %}
{{ rule.webhook_url[:60] }}{% if rule.webhook_url|length > 60 %}...{% endif %}
{% endfor %} {% else %}

{{ _('No tenés reglas configuradas todavía') }}

{{ _('Creá tu primera regla para empezar a recibir alertas automáticas.') }}

{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}