{% extends "framework_modern.html" %} {% load static %} {% block content %} {% block action_modals %} {% include "modals/objects/add_pathway_node_modal.html" %} {% include "modals/objects/add_pathway_edge_modal.html" %} {% include "modals/objects/download_pathway_csv_modal.html" %} {% include "modals/objects/download_pathway_image_modal.html" %} {% include "modals/objects/identify_missing_rules_modal.html" %} {% include "modals/objects/generic_copy_object_modal.html" %} {% include "modals/objects/edit_pathway_modal.html" %} {% include "modals/objects/generic_set_aliases_modal.html" %} {% include "modals/objects/generic_set_scenario_modal.html" %} {% include "modals/objects/delete_pathway_node_modal.html" %} {% include "modals/objects/delete_pathway_edge_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% include "modals/objects/engineer_pathway_modal.html" %} {% endblock action_modals %}

{{ pathway.name }}

Graphical Representation
{% if pathway.predicted %}
{% include "components/loading-spinner.html" %}
{% endif %}
Description
{{ pathway.description | safe }}
{% if pathway.aliases %}
Aliases
{% endif %} {% if pathway.scenarios.all %}
Scenarios
{% endif %} {% if pathway.setting %}
Setting
{% with setting_to_render=pathway.setting can_be_default=False %} {% include "objects/setting_template.html" %} {% endwith %}
{% endif %}
{{ pathway.d3_json|json_script:"pathway" }} {% endblock content %}