Skip to content

Commit

Permalink
chore(forum templates): ajout des ids utiles dans les tests
Browse files Browse the repository at this point in the history
  • Loading branch information
calummackervoy committed Jul 2, 2024
1 parent d50aa97 commit 78400c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lacommunaute/templates/forum/forum_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ <h1>{{ forum.name }}</h1>
<div class="s-section__container container">
<div class="s-section__row row">
<div class="s-section__col col-12">
<div class="c-box">
<div class="c-box" id="forum-detail-topic-list">
{% with unread_topics=unread_topics %}
{% include "forum_conversation/topic_list.html" %}
<!-- note vincentporte : to be optimized -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "forum/forum_detail.html" %}
{% block subforum_list %}
<div class="row mt-4">
<div class="row mt-4" id="documentation-category-subforums">
{% for node in sub_forums.top_nodes %}
<div class="col-12 col-md-4 mb-3 mb-md-5">
<div class="card c-card has-one-link-inside h-100">
Expand Down Expand Up @@ -29,7 +29,7 @@
{% endblock subforum_list %}
{% block forum_foot_content %}
{% if user.is_superuser %}
<section class="s-section">
<section class="s-section" id="add-documentation-to-category-control">
<div class="s-section__container container">
<div class="s-section__row row">
<div class="s-section__col col-12">
Expand Down

0 comments on commit 78400c1

Please sign in to comment.