{% block title %}djust-components Gallery{% endblock %}
{% comment %}
The dj-root attribute alone — no dj-view. `mixins/request.py` computes the view
path from the class doing the render and stamps dj-view onto this div.
This used to name the class here, with a dotted path rooted at the
static/template namespace, and every one of the gallery's ten views was
therefore refused on mount (#2893): that namespace is not a Python package, so
`security/mount.py`'s `importlib.import_module` raised. The pages returned 200
and looked correct while nothing was listening. A path the server derives
cannot drift from the class that actually rendered the page.
NOTE: this comment deliberately does not spell the tag out with angle brackets.
`_search_dj_root_open` scans the RAW template source, so a comment quoting the
tag is matched as if it were markup — which silently erased this gallery's page
content once.
{% endcomment %}