{% extends "fitcheck/base.html" %} {% load i18n %} {% block fitcheck_content %}
{% translate "All" %} {% for category in all_categories %} {{ category.name }} {% endfor %}
{% if perms.fitcheck.manage_doctrines %}
{% if fittings_available %} {% translate "Import from Fittings Plugin" %} {% endif %}
{% endif %}
{% if doctrines %}
{% for doctrine in doctrines %} {% include "fitcheck/partials/doctrine_card.html" %} {% endfor %}
{% else %}
{% if perms.fitcheck.manage_doctrines %}

{% translate "No doctrines yet. Import them from the Fittings plugin, or create one from scratch." %}

{% if fittings_available %} {% translate "Import from Fittings Plugin" %} {% endif %} {% translate "Guided Creation" %} {% translate "Direct Creation" %}
{% else %} {% translate "No doctrines are visible to you yet." %} {% endif %}
{% endif %} {% endblock %}