mirror of https://github.com/Kozea/pygal.git
Python to generate nice looking SVG graph
http://pygal.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
388 B
16 lines
388 B
12 years ago
|
{% extends '_layout.jinja2' %}
|
||
|
|
||
|
{% block js %}
|
||
|
<script type="text/javascript" src="http://l:2343/svg.jquery.js"></script>
|
||
|
<script type="text/javascript" src="http://l:2343/pygal-tooltips.js"></script>
|
||
|
{% endblock js %}
|
||
|
|
||
|
{% block section %}
|
||
|
{% for svg in svgs %}
|
||
|
<figure>
|
||
|
{{ svg | safe }}
|
||
|
<figcaption></figcaption>
|
||
|
</figure>
|
||
|
{% endfor %}
|
||
|
{% endblock section %}
|