{% extends "base.html" %} {% macro entity_tab(name, text, url_suffix, count=None) %} {{ text }}{% if count != None %} ({{ count }}){% endif %} {% endmacro %} {% block fullmain %}

{% if entity_type == "release" %} {{ entity.title }} {% if entity.subtitle %}
{{ entity.subtitle }} {% endif %} {% endif %} {{ entity_type }}_{{ entity.ident }}

{% if entity_type == "release" %}

{% if authors and authors != [] %} by {% for contrib in authors[:12] %} {% if contrib.creator_id %} {{ contrib.raw_name }}{% if not loop.last %}, {% endif %} {% else %} {% if contrib.raw_name != None %}{{ contrib.raw_name }}{% else %}Unknown{% endif %}{% if not loop.last %}, {% endif %} {% endif %} {% endfor %} {% if authors|count > 12 %} (+{{ authors|length - 12 }} others) {% endif %}
{% endif %} {% endif %}

{% block entity_main %}{% endblock %}
{% endblock %} {% block postscript %} {% endblock %}