{% extends "base.html" %} {% import 'macros.html' as macros %} {% block asset %} {% endblock %} {% block header %} {{ macros.page_title(title=_('Plot View')) }} {% endblock %} {% block midbody %}
List

{% for header in list_tbl_header %} {% endfor %} {% for row in list_tbl_rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{{ cell }}
Stats

{% for header in stats_tbl_header %} {% endfor %} {% for row in stats_tbl_data %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{{ cell }}
Full Link Data

{% for header in full_link_tbl_header %} {% endfor %} {% for row in full_link_tbl_rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{{ cell }}
{{ optdata }} {% endblock %} {% block js %} {% endblock %}