{% extends "layout.html" %} {% block title_name %} - {{ node.name }}{% endblock %} {% block breadcrumb %} {{ [[_('types'), 'node_index'], root, node.name]|crumb }} {% endblock %} {% block content %}
{% if 'editor'|is_authorized and node.root and not root.locked %}
{{ _('edit')|button(url_for('node_update', id_=node.id)) }} {% if not node.system and node.count < 1 and not node.subs %} {{ _('delete')|button(url_for('node_delete', id_=node.id), onclick="return confirm('" + _('delete')|uc_first + " " + node.name.replace("'", '').replace('"', '') + "?');") }} {% endif %}
{% endif %}

{{ node.name }}

{% if super_ %}

{{_('super')|uc_first}}: {{ super_|link|safe }}

{% endif %} {{ info|display_info }} {% if root.value_type %}

{{_('unit')|uc_first}}: {{node.description}}

{% else %} {{ node|description }} {% endif %}
{% if tables['subs'].rows %}
{{ tables['subs'].display('subs')|safe }}
{% endif %} {% if tables['entities'].rows or tables['link_entities'].rows %}
{% if 'editor'|is_authorized and not root.value_type %}
{{ _('move entities')|button(url_for('node_move_entities', id_=node.id)) }}
{% endif %} {% if tables['entities'].rows %} {{ tables['entities'].display('entities')|safe }} {% endif %} {% if tables['link_entities'].rows %} {{ tables['link_entities'].display('link_entities')|safe }} {% endif %}
{% endif %}
{% endblock %}