euscan-ng/euscanwww/djeuscan/templates/euscan/statistics.html
volpino e9c03fbded euscanwww: Fixed CSS stylesheet
Added Twitter Bootstrap and tweaked the layout to use the grid layout

Signed-off-by: volpino <fox91@anche.no>
2012-06-29 14:22:01 +02:00

21 lines
469 B
HTML

{% extends "_base.html" %}
{% load url from future %}
{% block content %}
<h2>Statistics</h2>
<h3>Current statistics</h3>
<img src="{% url "chart" 'pie-versions' %}" />
<img src="{% url "chart" 'pie-packages' %}" />
<h3>All time statistics</h3>
<img src="{% url "chart" 'packages-weekly' %}" />
<img src="{% url "chart" 'packages-monthly' %}" />
<img src="{% url "chart" 'versions-weekly' %}" />
<img src="{% url "chart" 'versions-monthly' %}" />
{% endblock %}