summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/authors.html
blob: 1ce1af274f0402a6a9f0b78735d23bab152fc392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% load i18n %}

<ul>
  {% for author in authors %}
  <li class="vcard">
    <a href="{% url gstudio_author_detail author.username %}"
       title="{{ author.username }}" class="fn nickname url">{{ author.username }}</a>
    {% blocktrans count author.nodetypes_published.count as nodetype_count %}{{ nodetype_count }} nodetype{% plural %}{{ nodetype_count }} nodetypes{% endblocktrans %}
  </li>
  {% empty %}
  <li>
    {% trans "No authors yet." %}
  </li>
  {% endfor %}
</ul>