{% extends 'assets/base.html' %} {% load bob %} {% load i18n %} {% block content %}

{% trans "Licence list" %}

{% for category in categories %} {% for licence in category.licences_annotated %} {% endfor %} {% endfor %}
{% trans "Name" %} {% trans "Used" %} {% trans "Actions" %}
{{ category.name }} {{ category.used }} / {{ category.total }}
{{ licence }} {{ licence.used }} / {{ licence.number_bought }}
Action
{% pagination categories url_query=url_query show_all=0 fugue_icons=1 %} {% endblock %} {% block scripts %} {{ block.super }} {% endblock scripts %}