Просмотр исходного кода

Display categories threads/posts counts in admin categories list

rafalp 6 лет назад
Родитель
Сommit
cac7b6c438
1 измененных файлов с 9 добавлено и 1 удалено
  1. 9 1
      misago/templates/misago/admin/categories/list.html

+ 9 - 1
misago/templates/misago/admin/categories/list.html

@@ -15,6 +15,8 @@
 {% block table-header %}
 <th style="width: 1%;">&nbsp;</th>
 <th>{% trans "Category" %}</th>
+<th style="width: 120px;">{% trans "Threads" %}</th>
+<th style="width: 120px;">{% trans "Posts" %}</th>
 <th style="width: 1%;">&nbsp;</th>
 <th style="width: 1%;">&nbsp;</th>
 <th style="width: 1%;">&nbsp;</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 %}