File size: 356 Bytes
0a3ce35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "index.html" %}

{% block head %}
    {{ js_resources|indent(4)|safe }}
    {{ css_resources|indent(4)|safe }}
    {% for plot_script in plot_scripts %}
        {{ plot_script|indent(4)|safe }}
    {% endfor %}
{% endblock %}

{% block contents %}
    {% for plot_div in plot_divs %}
        {{ plot_div | safe }}
    {% endfor %}
{% endblock %}