dr.botzo/web/templates/karma/stats.html
Brian S. Stephan 2f5bdf5d1f Web (Karma): add detail page to see the deltas of one key
this could be a graph, eventually, with more time to hack through
something like YUI.
http://developer.yahoo.com/yui/examples/charts/charts-styles_clean.html
is a solid example
2011-02-20 17:08:17 -06:00

10 lines
192 B
HTML
Executable File

{% autoescape on %}
<ol>
{% for value in values %}
<li>
<a href="{% url key_detail value.key %}">{{ value.key }}</a> ({{ value.value }})
</li>
{% endfor %}
</ol>
{% endautoescape %}