{% extends "layout.html" %} {% from "partial/switch_tree.html" import tree_menu %} {% from "partial/no_results.html" import no_results %} {% block title %}{{ name }} - DXR{% endblock %} {% block head %} {% endblock %} {% block site_css %} {{ super() }} {% endblock %} {% block content %}
{{ tree_menu(tree_tuples, tree) }} {% set state_eof = True %} {% if sections %}
{% for section, items in sections %}

{{ section }}

    {% for icon, title, href in items %}
  • {{ title }}
  • {%- endfor %}
{% endfor %}
{% endif %}
{% for line, annotations in lines %}
{%- for annotation in annotations -%}
{%- endfor -%}
{%- endfor -%}
Line Code
{% for line in lines %} {{ loop.index }} {% endfor %}
{% for line, annotations in lines -%}
{{ line }}
{% endfor -%}
{% endblock %} {% block site_js %} {{ super() }} {% endblock %}