{% extends "management/base.html" %} {% load i18n lucide %} {% comment %} Shared placeholder for every entity that doesn't have its own list template yet (see management.views.StubListMixin) -- a plain one-column table of __str__, just enough to prove the query scoping and permission gate work. Not meant to stay this bare once each section gets its own page. {% endcomment %} {% block heading %}{{ page_title }}{% endblock heading %} {% block panel %}
{% lucide "construction" size=18 %} {% trans "This section is still being built. For now it only lists what's on file." %}
{% for object in object_list %} {% empty %} {% endfor %}
{{ object }}
{% trans "Nothing here yet." %}
{% endblock panel %}