diff --git a/lacommunaute/templates/forum_conversation/topic_simple_list.html b/lacommunaute/templates/forum_conversation/topic_simple_list.html index 03513d8b..67b3b1fd 100644 --- a/lacommunaute/templates/forum_conversation/topic_simple_list.html +++ b/lacommunaute/templates/forum_conversation/topic_simple_list.html @@ -1,40 +1,31 @@ {% load i18n %}
{% if topics or not hide_if_empty %} -
- {% for topic in topics %} -
-
-
-
-

- {{ topic.subject }} -

+
    + {% for topic in topics %} +
  • +
    + {{ topic.subject }} +
    + {% include "forum_conversation/partials/poster.html" with post=topic.first_post topic=topic is_topic_head=True forum=forum %}
    -
    -
    -
    - {% include "forum_conversation/partials/poster.html" with post=topic.first_post topic=topic is_topic_head=True forum=forum %} -
    -
    -
    - {% include 'partials/rendered_md.html' with content=topic.first_post.content truncatechars=1 only %} - {% if topic.first_post.content.rendered|length > 200 %} - {% trans "+ show more" %} - {% endif %} -
    -
    +
    +
    + {% include 'partials/rendered_md.html' with content=topic.first_post.content truncatechars=1 only %} + {% if topic.first_post.content.rendered|length > 200 %} + {% trans "+ show more" %} + {% endif %}
    @@ -43,15 +34,12 @@ {% include "forum_conversation/partials/post_feed_form_collapsable.html" with post_form=form %}
    -
-
-
-
- {% include "forum_conversation/partials/topic_detail_actions.html" with posts_count=topic.posts_count %} -
-
-
- {% endfor %} +
+ {% include "forum_conversation/partials/topic_detail_actions.html" with posts_count=topic.posts_count %} +
+ + {% endfor %} + {% endif %}