diff options
Diffstat (limited to 'build/lib.linux-i686-2.6/gstudio/templates/gstudio/author_list.html')
-rw-r--r-- | build/lib.linux-i686-2.6/gstudio/templates/gstudio/author_list.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/build/lib.linux-i686-2.6/gstudio/templates/gstudio/author_list.html b/build/lib.linux-i686-2.6/gstudio/templates/gstudio/author_list.html new file mode 100644 index 00000000..2fd02950 --- /dev/null +++ b/build/lib.linux-i686-2.6/gstudio/templates/gstudio/author_list.html @@ -0,0 +1,27 @@ +{% extends "gstudio/base.html" %} +{% load i18n %} + +{% block meta-description %}{% trans "Author list" %}{% endblock %} + +{% block title %}{% trans "Authors" %}{% endblock %} + +{% block content %} +<h2>{% trans "Author list" %}</h2> +<div> + <ul> + {% for object in object_list %} + <li class="vcard"> + <a href="{% url gstudio_author_detail object.username %}" + title="{{ object.username }}" class="fn nickname url"> + {{ object.username }} + </a> + {% blocktrans count object.nodetypes_published.count as nodetype_count %}{{ nodetype_count }} nodetype{% plural %}{{ nodetype_count }} nodetypes{% endblocktrans %} + </li> + {% empty %} + <li> + {% trans "No authors yet." %} + </li> + {% endfor %} + </ul> +</div> +{% endblock %} |