{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans "Name:" %} {{object.slug}}
{% trans "URL:" %} {{object.url}}

{% trans "Projects that use it:" %}

{% blocktrans count object.svgroupinfo_set.count as count %}1 project use this license{% plural %}{{count}} projects use this license{% endblocktrans %}
{% for name in object.get_group_names %} {{name}}{% if forloop.last %}{%else%},{% endif %} {% endfor %}

{% trans "Go to license list" %}

{% endblock %} {% comment %} Local Variables: ** mode: django-html ** tab-width: 4 ** indent-tabs-mode: nil ** End: ** {% endcomment %}