{% extends "fitcheck/base.html" %} {% load i18n %} {% block fitcheck_content %}
{% translate "Categories group doctrines and fittings and gate who can see them by Auth group." %}
{% translate "New Category" %}
{% translate "Categories" %}
{% for category in categories %} {% empty %} {% endfor %}
{% translate "Category" %} {% translate "Selected Groups (Any)" %} {% translate "Required Groups (All)" %} {% translate "Doctrines" %} {% translate "Fittings" %}
{{ category.name }} {% for g in category.selected_groups.all %} {{ g.name }} {% empty %}{% endfor %} {% for g in category.required_groups.all %} {{ g.name }} {% empty %}{% endfor %} {{ category.doctrines.count }} {{ category.fits.count }} {% if not category.selected_groups.all and not category.required_groups.all %} {% translate "public" %} {% endif %}
{% csrf_token %}
{% translate "No categories yet. Create one to gate doctrines/fits by group." %}
{% endblock %}