thread.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {% load i18n %}
  2. <li class="list-group-item">
  3. <div>
  4. {% if thread.is_read %}
  5. [read]
  6. {% else %}
  7. [new]
  8. {% endif %}
  9. <a href="{{ thread.get_absolute_url }}" class="item-title lead">
  10. {{ thread.title }}
  11. </a>
  12. </div>
  13. <ul class="list-inline">
  14. {% if thread.top_category %}
  15. <li class="thread-path">
  16. <a href="{{ thread.top_category.get_absolute_url }}" class="thread-category{% if thread.top_category.css_class %} thread-category-{{ thread.top_category.css_class }}{% endif %}">
  17. {{ thread.top_category.name }}
  18. </a>
  19. {% if thread.category != thread.top_category %}
  20. <span class="path-separator">
  21. <span class="material-icon">
  22. arrow_forward
  23. </span>
  24. </span>
  25. <a href="{{ thread.category.get_absolute_url }}" class="thread-category{% if thread.category.css_class %} thread-category-{{ thread.category.css_class }}{% endif %}">
  26. {{ thread.category.name }}
  27. </a>
  28. {% endif %}
  29. </li>
  30. {% endif %}
  31. <li>
  32. {% blocktrans trimmed count replies=thread.replies %}
  33. {{ replies }} reply
  34. {% plural %}
  35. {{ replies }} replies
  36. {% endblocktrans %}
  37. </li>
  38. <li>
  39. {{ thread.last_poster_name }}
  40. </li>
  41. <li>
  42. {{ thread.last_post_on|date }}
  43. </li>
  44. </ul>
  45. </li>