{% extends "layout.html" %} {% block content %}

Tableau de bord Administration

{{ articles|length }} Articles
{{ solutions|length }} Validations en attente

Articles & Publications

Nouvel Article
{% if articles %}
{% for article in articles %} {% endfor %}
Date Titre Statut Actions
{{ article.created_at.strftime("%d/%m/%Y") }} {{ article.title }} {% if article.published %} Publié {% else %} Brouillon {% endif %}
{% else %}

Aucun article publié pour le moment.

{% endif %}

Validations en attente

{% if solutions|length == 0 %}

Aucune solution en attente de validation.

{% else %}
{% for sol in solutions %} {% endfor %}
Logo Nom Description Site Web Actions
{% if sol.logo_filename %} {% else %}
{% endif %}
{{ sol.name }} {{ sol.description[:80] }}... Visiter ↗
{% endif %}
{% endblock %}