{% extends "djust_components/gallery/_base.html" %} {% block title %}djust-components — Interactive Component Gallery{% endblock %} {% block content %}

Component Gallery

{{ total_count }} reusable components for djust — server-rendered, interactive, zero custom JS. Pick a category to browse live demos.

{% if search_query and not filtered_cards %}

No components found for “{{ search_query }}”.

{% elif search_query %}

{{ filtered_count }} component{{ filtered_count|pluralize }} matching “{{ search_query }}”

{% for comp in filtered_cards %}

{{ comp.label }}

{{ comp.category_label }}
{% endfor %}
{% else %}
{% for cat in category_cards %}

{{ cat.label }}

{{ cat.count }} component{{ cat.count|pluralize }}
{% endfor %}
{% endif %} {% endblock %}