{% extends 'base.html.twig' %} {% block title %}Magazine index editor — {{ website_name }}{% endblock %} {% block meta_description %} {% endblock %} {% block body %}

Magazine index editor

Edit kind 30040 indices (root, categories, subcategories), then sign with your Nostr extension. Only indices you changed are signed; any other index required so nested a links stay consistent is still included in the same batch (same rules as before).

{% for node in editor_payload.nodes %} {% set depth = node.depth|default(0) %}
{% if node.is_root %} Root index {% elseif depth > 1 %} Subcategory {% else %} Category {% endif %} {{ node.d_tag }}
{% endfor %}
{% endblock %}