{% extends "base.html" %} {% block title %}Votación — Admin{% endblock %} {% block content %}

Control de Votación

Playlists ⏏ Cuenta Spotify Cerrar sesión
{% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success }}
{% endif %}

Configurar votación

{% if config.is_active %} 🟢 Activa · Ventana: {{ config.start_time }} – {{ config.end_time }} {% else %} 🔴 Inactiva {% endif %}
🕐 Hora del servidor: {{ server_time }}

Resultados ({{ total_votes }} votos)

{% if results and results[0].votes > 0 %}
{% endif %}
{% if results %}
{% for item in results %} {% set pct = (item.votes / total_votes * 100) | round(1) if total_votes > 0 else 0 %}
{{ loop.index }}
{% if item.playlist.image_url %} {% else %}
🎵
{% endif %}
{{ item.playlist.name }} {% if loop.first and item.votes > 0 %} 🏆 Ganador {% endif %}
{{ item.votes }} {{ pct }}%
{% endfor %}
{% else %}

No hay playlists configuradas.

{% endif %}
{% endblock %}