{% extends "admin/change_list.html" %} {% block content_title %}{% load humanize %}{% load month_name %}

Sales Summary

{% endblock %} {% block result_list %}
{% for row in summary %} {% endfor %}
{{ row.month|date:"M Y" }} {{ row.total }} ${{ row.total_sales|floatformat:3 }} {{ row.total_sales | default:0 | percentof:summary_total.total_sales }}
Total {{ summary_total.total }} ${{ summary_total.total_sales|floatformat:3}} 100%
{% endblock %} {% block pagination %}{% endblock %}