unread.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {% extends "misago/threads/base.html" %}
  2. {% load i18n misago_stringutils %}
  3. {% block title %}{% trans "Unread threads" %}{% if page.number > 1 %} ({% blocktrans with page=page.number %}Page {{ page }}{% endblocktrans %}){% endif %} | {{ block.super }}{% endblock title %}
  4. {% block content %}
  5. <div class="page-header">
  6. <div class="container">
  7. <h1>
  8. {% trans "Threads with unread replies" %}
  9. </h1>
  10. </div>
  11. </div>
  12. {{ block.super }}
  13. {% endblock content %}
  14. {% block threads-panel %}
  15. <div class="table-actions">
  16. {% include "misago/threads/paginator.html" %}
  17. {% include "misago/threads/sort.html" %}
  18. {% if threads %}
  19. <form action="{% url 'misago:clear_unread_threads' %}" method="POST" class="pull-right">
  20. {% csrf_token %}
  21. <button type="submit" class="btn btn-default">
  22. <span class="fa fa-circle-o fa-fw"></span>
  23. {% trans "Clear list" %}
  24. </button>
  25. </form>
  26. {% endif %}
  27. </div>
  28. {{ block.super }}
  29. <div class="table-actions">
  30. {% include "misago/threads/paginator.html" %}
  31. </div>
  32. {% endblock threads-panel %}
  33. {% block no-threads %}
  34. {% blocktrans trimmed count days=fresh_period %}
  35. There are no threads with unread replies from last {{ days }} day.
  36. {% plural %}
  37. There are no threads with unread replies from last {{ days }} days.
  38. {% endblocktrans %}
  39. {% endblock no-threads %}