{% from "components/_tabs.html" import tabs_intro %}

COMUNIDAD GALÁCTICA

Senado galáctico

Propón resoluciones, vota, emplea favores, establece sanciones y elige un custodio durante las crisis.

{{ tabs_intro('senate', 'Apartados del Senado', 'Separa propuestas, votaciones, favores y coordinación de crisis.') }}
Ritmo del Senado: las propuestas automáticas permanecen abiertas 120 segundos y nunca se generan antes de 300 segundos desde la apertura anterior. Próxima revisión automática: . Las propuestas manuales siguen disponibles cuando no hay una votación abierta.

Proponer resolución

Resoluciones

{% if resolutions %}
{% for resolution in resolutions %}{% set totals = resolution_votes.get(resolution.id) %}

{{ resolution.title }}

{{ resolution.description }}

Propuesta por {{ resolution.proposer_name }}. Estado: {{ resolution.status }}.

{% if totals %}

A favor {{ totals.yes_weight or 0 }}; en contra {{ totals.no_weight or 0 }}; abstención {{ totals.abstain_weight or 0 }}.

{% endif %}{% if resolution.status == 'voting' %}
{% elif resolution.result_text %}

{{ resolution.result_text }}

{% endif %}
{% endfor %}
{% else %}

No hay resoluciones registradas.

{% endif %}

Favores diplomáticos

Disponibles para reforzar votos: {{ favor_count }}.

{% if crisis_state %}

Coordinación de crisis

{{ CRISES[crisis_state.crisis_key] }}: fase {{ crisis_state.phase }}, progreso {{ crisis_state.progress|round(1) }}, amenaza {{ crisis_state.threat|round(1) }}. Custodio: {{ crisis_state.custodian_name or 'sin elegir' }}.

{% endif %}