{% extends "base.html" %} {% block content %}
🎲 Règles Sim — Propositions LLM
En attente : {{ sim_stats.pending }} Acceptées : {{ sim_stats.accepted }} Rejetées : {{ sim_stats.rejected }}
{{ proposals|length }} proposition(s)
{% if not proposals %}
Aucune proposition.
Lancer : python3 sim_enricher.py --type all sur Ampère
{% endif %} {% for p in proposals %}
#{{ p.id }} {{ p.status | upper }} {{ p.proposal_type }} {{ p.created_at.strftime('%d/%m %H:%M') if p.created_at else '' }}

{{ p.title }}

{{ p.description }}

{% if p.rationale %}

đź’ˇ {{ p.rationale }}

{% endif %} {% if p.json_patch %}
{{ p.json_patch | tojson(indent=2) }}
{% endif %} {% if p.status == 'pending' %}
{% endif %}
{% endfor %} {% endblock %}