{% extends "framework.html" %} {% load envipytags %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_node_modal.html" %} {% include "modals/objects/generic_set_aliases_modal.html" %} {% include "modals/objects/generic_set_scenario_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}
{{ node.name|nh_safe }}
The underlying structure can be found here.
{{ node.description|nh_safe }}
{% if node.aliases %}
{% for alias in node.aliases %} {{ alias }} {% endfor %}
{% endif %}
{{ node.default_node_label.as_svg|safe }}
{{ node.default_node_label.smiles }}
{% if node.scenarios.all %}
{% for s in node.scenarios.all %} {{ s.name|nh_safe }} ({{ s.package.name|nh_safe }}) {% endfor %}
{% endif %} {% if app_domain_assessment_data %}
{% endif %}
{% endblock content %}