{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% import 'macros.html' as pbw %} {% block title %}Edge Catalog{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
{{ pbw.render_networks_panel(edge.networks) }} {% if edge.evidence %}

Provenance

{{ edge.evidence.citation }}

{{ edge.evidence.text }}

{% set related_edges = edge.evidence.edges.all() %} {% if related_edges|length > 1 %}

Related Edges {{ (related_edges|length) - 1 }}

    {% for related_edge in related_edges %} {% if related_edge.md5 != edge.md5 %}
  • {{ related_edge.bel }}
  • {% endif %} {% endfor %}
{% endif %}
{% endif %} {% set annotation_entries = edge.annotations.all() %} {% if annotation_entries %}

Annotations {{ annotation_entries|length }}

{% for entry in annotation_entries %}
{{ entry.namespace.name }}
{{ entry.name }}
{% endfor %}
{% endif %}
{% include "footer.html" %} {% endblock %}