{% extends "admin/base.html" %} {% block title %}Help — cmdop admin{% endblock %} {% block content %} {# Plan 61/2a — `/admin/help` listing. Plan 61/2b-W4 — grouped into reading categories so the page reads as a curated path rather than a slug-sorted flat list. Each card carries a tooltip explaining what the doc covers. #} {% from 'admin/components/ui.html' import page_header, card, tooltip %} {{ page_header( 'Documentation', subtitle='In-product docs — works offline, mirrors the public site.', eyebrow='Help' ) }}
{% for cat in categories %} {% call card(kind='roomy') %}

{{ cat.title }}

{{ cat.docs|length }} doc{% if cat.docs|length != 1 %}s{% endif %}
{% if cat.blurb %}

{{ cat.blurb }}

{% endif %} {% endcall %} {% endfor %}
{% endblock %}