index.html 233 B

123456789
  1. <ul class="posts-list">
  2. {% for post in posts %}
  3. {% if post.is_event %}
  4. {% include "misago/thread/posts/event.html" %}
  5. {% else %}
  6. {% include "misago/thread/posts/post.html" %}
  7. {% endif %}
  8. {% endfor %}
  9. </ul>