summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/tags/authors.html
blob: c518ecee4f5f9d58c5048c1877f7e6f6ea1278bc (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 objectapp_author_detail author.username %}"
       title="{{ author.username }}" class="fn nickname url">{{ author.username }}</a>
    {% blocktrans count author.gbobjects_published.count as gbobject_count %}{{ gbobject_count }} gbobject{% plural %}{{ gbobject_count }} gbobjects{% endblocktrans %}
  </li>
  {% empty %}
  <li>
    {% trans "No authors yet." %}
  </li>
  {% endfor %}
</ul>