{% extends "base.html" %}
{% block custom_css %}
{% endblock %}
{% block content %}
{{ _('Examples') }}
{% for h, h_t in head %}
{% if not h == 'Grew-match URL' %}
{{ h_t }} |
{% endif %}
{% endfor %}
{% for i in range(content['Tree']|length) %}
{% for col in content %}
{% if not (col == 'Grew-match URL') %}
{{ content[col][i] }} |
{% endif %}
{% endfor %}
{% endfor %}
{{ _('Examples') }} |
{% for i in range(visualization['example_id']|length) %}
ID: {{visualization['example_id'][i]}} |
|
{% endfor %}
{% endblock %}
{% block custom_js %}
{% endblock %}