{% for plot_row in plots %}
{% for plot in plot_row %}
{% if plot.title %}
{{ plot.title }}
{% endif %}
{{ plot.name }}
{% if plot.desc %}
{{ plot.desc|safe }}
{% endif %}
{% if plot.args %}
Plot Arguments
{% for key, val in plot.args.items() %}
{{ key }} | {{ val }} |
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}