28 lines
738 B
HTML
28 lines
738 B
HTML
{% extends 'up_squelette.html' %}
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
|
<h2> Vos articles de blog </h2>
|
|
|
|
|
|
{% for article in list_posts %}
|
|
<article>
|
|
<h3> {{ article.title }} </h3>
|
|
<p> {{ article.subtitle }} </p>
|
|
<br/>
|
|
|
|
<small> Créé le : {{ article.time }} </small> <br/>
|
|
<small> Modifié le : {{ article.last_updated }}</small>
|
|
<p> Status : {{ article.status }}</p>
|
|
<br/>
|
|
|
|
<a href="{{ url_for('blog.edit', title=article.title) }}"><button type="button"> Editer </button></a>
|
|
<a href="{{ url_for('blog.delete', title=article.title) }}"><button type="button">Supprimer</button></a>
|
|
<a href="{{ url_for('blog.edit', title=article.title) }}"><button type="button"> Publier </button></a>
|
|
</article>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|