formation_django/exemple/mon_site/blog/templates/blog/list_articles.html
2018-04-10 11:29:01 +02:00

10 lines
256 B
HTML

{% extends 'base.html' %}
{% block content %}
<h3>Liste des articles</h3>
{% for article in articles %}
<h4><a href="{% url 'blog:article' article.pk %}">{{article.title}}</a></h4>
<p>Article écrit le {{article.date}}</p>
{% endfor %}
{% endblock %}