euscan-ng/euscanwww/djeuscan/templates/euscan/statistics.html

21 lines
469 B
HTML
Raw Normal View History

{% extends "_base.html" %}
2012-05-06 20:27:14 +02:00
{% load url from future %}
{% block content %}
<h2>Statistics</h2>
<h3>Current statistics</h3>
2012-05-06 20:27:14 +02:00
<img src="{% url "chart" 'pie-versions' %}" />
<img src="{% url "chart" 'pie-packages' %}" />
<h3>All time statistics</h3>
2012-05-06 20:27:14 +02:00
<img src="{% url "chart" 'packages-weekly' %}" />
<img src="{% url "chart" 'packages-monthly' %}" />
2012-05-06 20:27:14 +02:00
<img src="{% url "chart" 'versions-weekly' %}" />
<img src="{% url "chart" 'versions-monthly' %}" />
{% endblock %}