|
@@ -15,6 +15,8 @@
|
|
|
{% block table-header %}
|
|
|
<th style="width: 1%;"> </th>
|
|
|
<th>{% trans "Category" %}</th>
|
|
|
+<th style="width: 120px;">{% trans "Threads" %}</th>
|
|
|
+<th style="width: 120px;">{% trans "Posts" %}</th>
|
|
|
<th style="width: 1%;"> </th>
|
|
|
<th style="width: 1%;"> </th>
|
|
|
<th style="width: 1%;"> </th>
|
|
@@ -35,6 +37,12 @@
|
|
|
{{ item }}
|
|
|
</a>
|
|
|
</td>
|
|
|
+<td class="small">
|
|
|
+ {{ item.threads }}
|
|
|
+</td>
|
|
|
+<td class="small">
|
|
|
+ {{ item.posts }}
|
|
|
+</td>
|
|
|
<td>
|
|
|
{% if not item.last %}
|
|
|
<form action="{% url 'misago:admin:categories:nodes:down' pk=item.pk %}" method="post">
|
|
@@ -83,7 +91,7 @@
|
|
|
|
|
|
|
|
|
{% block blankslate %}
|
|
|
-<td colspan="{{ 5 }}">
|
|
|
+<td colspan="7">
|
|
|
{% trans "No categories are set." %}
|
|
|
</td>
|
|
|
{% endblock blankslate %}
|