-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abf6d36
commit dad01bd
Showing
7 changed files
with
28 additions
and
20 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
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
6 changes: 6 additions & 0 deletions
6
lacommunaute/templates/forum/forum_documentation_category.html
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
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,5 @@ | ||
<div class="mb-3"> | ||
{% for tag in tags %} | ||
<span class="badge badge-md rounded-pill bg-info-lighter text-info">{{ tag.name }}</span> | ||
{% endfor %} | ||
</div> |
11 changes: 11 additions & 0 deletions
11
lacommunaute/templates/forum/partials/updated_certified.html
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,11 @@ | ||
{% if forum.certified %} | ||
<span class="badge badge-md rounded-pill bg-communaute-light text-communaute text-decoration-none"> | ||
<i class="ri-checkbox-circle-fill"></i> | ||
Certifiée par la communauté de l'inclusion le {{ forum.updated|date:"d/m/Y" }} | ||
</span> | ||
{% else %} | ||
<span class="fs-sm">Fiche mise à jour le {{ forum.updated|date:"d/m/Y" }}</span> | ||
{% endif %} | ||
{% if user.is_superuser %} | ||
<a href="{% url 'forum_extension:edit_forum' forum.slug forum.id %}"><small>Mettre à jour</small></a> | ||
{% 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
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