123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {% extends "misago/threads/base.html" %}
- {% load i18n misago_stringutils %}
- {% block title %}{% trans "New threads" %}{% if page.number > 1 %} ({% blocktrans with page=page.number %}Page {{ page }}{% endblocktrans %}){% endif %} | {{ block.super }}{% endblock title %}
- {% block content %}
- <div class="page-header">
- <div class="container">
- <h1>
- {% trans "Threads you have never read" %}
- </h1>
- </div>
- </div>
- {{ block.super }}
- {% endblock content %}
- {% block threads-panel %}
- <div class="table-actions">
- {% include "misago/threads/paginator.html" %}
- {% include "misago/threads/sort.html" %}
- {% if threads %}
- <form action="{% url 'misago:clear_new_threads' %}" method="POST" class="pull-right">
- {% csrf_token %}
- <button type="submit" class="btn btn-default">
- <span class="fa fa-circle-o fa-fw"></span>
- {% trans "Clear list" %}
- </button>
- </form>
- {% endif %}
- </div>
- {{ block.super }}
- <div class="table-actions">
- {% include "misago/threads/paginator.html" %}
- </div>
- {% endblock threads-panel %}
- {% block no-threads %}
- {% blocktrans trimmed count days=fresh_period %}
- There are no threads from last {{ days }} day that you have never read.
- {% plural %}
- There are no threads from last {{ days }} days that you have you have never read.
- {% endblocktrans %}
- {% endblock no-threads %}
|