{% extends "base.html" %} {% block title %}Historique — SPARC{% endblock %} {% block content %}
{% if simulations %} {% for s in simulations %} {% endfor %}
Nom / ID Type Statut Date
{{ s.name or '—' }}
{{ s.id }}
{{ s.type }} {{ s.status }} {{ s.created_at[:16] if s.created_at else '—' }}
{% else %}
Aucune simulation pour le moment.
Créer une simulation
{% endif %}
{% if total_pages > 1 %} {% endif %}
{% endblock %}