Add missing closing tag

This commit is contained in:
Lucie Anglade 2023-08-05 11:56:04 +02:00
parent 160d86f9d7
commit aa493522af
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
{% block content %}
<section>
<h2>{{ "Actualités" if category=="news" else "Offres d'emploi" }}</h2>
{% for article in articles_page.object_list if article.category == category %}
<article>
@ -24,5 +25,6 @@
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
</section>
{% endblock %}