31 lines
904 B
Twig
31 lines
904 B
Twig
{% extends "layout.twig" %}
|
||
|
||
{% block title %}Admin – Gestion des articles{% endblock %}
|
||
|
||
{% block content %}
|
||
<h2>Gestion des articles</h2>
|
||
|
||
<!-- Lien d’ajout -->
|
||
<a href="/admin/edit/0">+ Ajouter un article</a>
|
||
|
||
{% for post in posts %}
|
||
<div class="post">
|
||
<h3>{{ post.title }}</h3>
|
||
<p>{{ post.content|nl2br }}</p>
|
||
|
||
<div class="admin-actions">
|
||
<a href="/admin/edit/{{ post.id }}">Éditer</a>
|
||
|
||
<form method="post" action="/admin/delete/{{ post.id }}" style="display:inline;">
|
||
<button type="submit"
|
||
onclick="return confirm('Supprimer cet article ?')">
|
||
Supprimer
|
||
</button>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
{% else %}
|
||
<p>Aucun article à gérer.</p>
|
||
{% endfor %}
|
||
{% endblock %}
|