{% extends "general.html" %} {% block content %}
{% for item in plot_data.keys() %} {% if item=="normal" %} {% if batch %}

Plots for {{title}} in batch mode

{% else %}

Plots for {{title}}

{% endif %} {% elif item=="scatter" and args.scatter %} {% if batch %}

Scatterplots for {{title}} in batch mode

{% else %}

Scatterplots for {{title}}

{% endif %} {% endif %} {% for plot in plot_data[item] %} {{ plot }} {% endfor %}
{% endfor %} {% endblock %}