summaryrefslogtreecommitdiff
path: root/objectapp/templates/admin/objectapp/widgets/_content_stats.html
blob: ab1b484d4c78e7328121c489f20d2776d6df6688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% load i18n %}

<tr>
  <th>{% trans "Contents" %}</th>
  <th>{% trans "Discussions" %}</th>
</tr>
<tr>
  <td>
    <a href="{% url admin:objectapp_gbobject_changelist %}">
      {% blocktrans %}{{ gbobjects }} gbobjects{% endblocktrans %}
    </a>
  </td>
  <td>
    <a href="{% url admin:comments_comment_changelist %}?is_public__exact=1">
      {% blocktrans %}{{ comments }} comments{% endblocktrans %}
    </a>
  </td>
</tr>
<tr>
  <td>
    <a href="{% url admin:tagging_tag_changelist %}">
      {% blocktrans %}{{ tags }} tags{% endblocktrans %}
    </a>
  </td>
  <td>{% blocktrans %}{{ trackbacks }} trackbacks{% endblocktrans %}</td>
</tr>
<tr>
  <td>
    <a href="{% url admin:auth_user_changelist %}">
      {% blocktrans %}{{ authors }} authors{% endblocktrans %}
    </a>
  </td>
  <td>
    <a href="{% url admin:comments_comment_changelist %}?is_public__exact=0">
      {% blocktrans %}{{ rejects }} rejected{% endblocktrans %}
    </a>
  </td>
</tr>