{% extends "djust_theming/catalogue/base.html" %} {% load theme_tags theme_components djust_components %} {% block title %}{{ category }} — Components{% endblock %} {% block catalogue_content %} {% theme_breadcrumb items=crumbs %}

{{ category }}

{{ category_components|length }} component{{ category_components|length|pluralize }} in this category.

{% for comp in category_components %} {% card title=comp.display_name class="dc-card" %}
{% theme_badge comp.component_type variant=comp.component_type %}
{% if comp.description %}

{{ comp.description }}

{% endif %} {% component_thumbnail comp.name as thumb %}{% if thumb %}{% endif %}
{% if comp.example_count %}{{ comp.example_count }} example{{ comp.example_count|pluralize }}{% endif %} {% if comp.a11y_count %} · {{ comp.a11y_count }} a11y rule{{ comp.a11y_count|pluralize }}{% endif %}
{% endcard %}
{% endfor %}
{% endblock %}