read_icon.html 884 B

123456789101112131415161718192021222324252627282930
  1. {% load i18n %}
  2. {% if category.is_closed %}
  3. {% if category.is_read %}
  4. <div class="read-status item-read" title="{% trans "This category has no new posts. (closed)" %}">
  5. <span class="material-icon">
  6. lock_outline
  7. </span>
  8. </div>
  9. {% else %}
  10. <div class="read-status item-new" title="{% trans "This category has new posts. (closed)" %}">
  11. <span class="material-icon">
  12. lock
  13. </span>
  14. </div>
  15. {% endif %}
  16. {% else %}
  17. {% if category.is_read %}
  18. <div class="read-status item-read" title="{% trans "This category has no new posts." %}">
  19. <span class="material-icon">
  20. chat_bubble_outline
  21. </span>
  22. </div>
  23. {% else %}
  24. <div class="read-status item-new" title="{% trans "This category has new posts." %}">
  25. <span class="material-icon">
  26. chat_bubble
  27. </span>
  28. </div>
  29. {% endif %}
  30. {% endif %}