{% extends "languages/base.html" %} {% load i18n %} {% load txcommontags %} {% load statistics %} {% block body_class %}{{ block.super }} language_detail{% endblock %} {% block title %}{{ block.super }} | {{ language }}{% endblock %} {% block breadcrumb %}{{ block.super }} » {{ language.name }}{% endblock %} {% block content_title %}

{{ language.name }} {{ language.code }}

{% endblock %} {% block content_main %} {% for collection in collection_list %} {% with collection.releases.all as releases %}

{% blocktrans %}{{ collection }} Releases{% endblocktrans %} {% render_metacount releases _("releases") %}

{% if releases %}

{% blocktrans %}The {{ collection }} collection includes the following groups of shipped components:{% endblocktrans %}

{% else %} {% if request.user.is_authenticated and perms.txcollections.add_release %} {% url collection_release_create slug=collection.slug as release_create %}

{% blocktrans %}No releases are registered for this collection yet. Why don't you add one?{% endblocktrans %}

{% endif %} {% endif %} {% endwith %} {% endfor %} {% endblock %}