-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Affiche les objectifs d'une publication dans son en-tête (et corrige …
…un souci avec l'affichage des catégories) (#6440) * Ajoute l'affichage des objectifs dans l'en-tête des publiations * Corrige un problème d'espace dans l'affichage des catégories sur une publication
- Loading branch information
Showing
3 changed files
with
26 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% load i18n %} | ||
|
||
<p> | ||
{% trans "Catégorie" %}{{ categories|pluralize }} : | ||
|
||
{# Warning: whitespace in the lines below is crucial for rendering, despite ruining legibility. Change with care. #} | ||
{% for category in categories %}{% if forloop.first %}{% elif forloop.last %} {% trans "et" %}{% else %},{% endif %} | ||
{% if content.is_opinion %} | ||
<a href="{% url 'opinion:list' %}?category={{ category.slug }}">{{ category.title }}</a> | ||
{% else %} | ||
<a href="{% url 'publication:list' %}?subcategory={{ category.slug }}">{{ category.title }}</a>{% endif %}{% endfor %} | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% load i18n %} | ||
|
||
{% if goals %} | ||
<p> | ||
{% trans "Objectif" %}{{ goals|pluralize }}{%trans " :" %} | ||
{% comment %} | ||
Warning: whitespace in the loop below is crucial to ensure correct rendering. | ||
That's why it is written as a one-liner. Take care when modifying it. | ||
{% endcomment %} | ||
{% for goal in goals %}{% if not forloop.first %}, {% endif %}<a href="{% url "content:view-goals" %}?objectif_{{ goal.id }}">{{ goal }}</a>{% endfor %} | ||
</p> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters