{% extends "bootstrap/base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block scripts %} {{ super() }} {% endblock %} {% block title %}{{ network }} Errors and Warnings{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
{% if current_user.is_beta_tester %} {% endif %} {% for number, line, exc, context in graph.warnings %} {% if current_user.is_beta_tester %} {% endif %} {% endfor %}
Line BEL MessageAnnotations
{{ number }} {{ line }} {{ exc }}
{% for k,v in context['annotations'].items()|sort %}
{{ k }}
{% if v is string %} {{ v }} {% else %}
    {% for vi in v %}
  • {{ vi }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}