Projet

Général

Profil

0002-journal-remove-unused-template-54295.patch

Valentin Deniaud, 26 mai 2021 11:43

Télécharger (1,05 ko)

Voir les différences:

Subject: [PATCH 2/2] journal: remove unused template (#54295)

 .../apps/journal/templates/journal/date_hierarchy.html    | 8 --------
 1 file changed, 8 deletions(-)
 delete mode 100644 src/authentic2/apps/journal/templates/journal/date_hierarchy.html
src/authentic2/apps/journal/templates/journal/date_hierarchy.html
1
{% for caption, url in date_hierarchy.back_urls %}
2
    <a class="date-hierarchy--back-url" href="{{ url }}">{{ caption }}</a>
3
{% endfor %}
4
{% if date_hierarchy.choice_urls %}
5
    {% for caption, url in date_hierarchy.choice_urls %}
6
        <a class="date-hierarchy--choice" href="{{ url }}">{{ caption }}</a>
7
    {% endfor %}
8
{% endif %}
9
-