some refactoring, added Package manager for removing code duplicates, added helpers module, basic tests layout

This commit is contained in:
volpino
2012-05-01 16:56:09 +02:00
parent 1c53c60eed
commit 8e37f6249c
34 changed files with 260 additions and 84 deletions

View File

@ -0,0 +1,19 @@
{% extends "_base.html" %}
{% block content %}
<h2>What's euscan ?</h2>
<h2>Statistics</h2>
<h3>Current statistics</h3>
<img src="{% url djeuscan.views.chart 'pie-versions' %}" />
<img src="{% url djeuscan.views.chart 'pie-packages' %}" />
<h3>All time statistics</h3>
<img src="{% url djeuscan.views.chart 'packages-weekly' %}" />
<img src="{% url djeuscan.views.chart 'packages-monthly' %}" />
<img src="{% url djeuscan.views.chart 'versions-weekly' %}" />
<img src="{% url djeuscan.views.chart 'versions-monthly' %}" />
{% endblock %}