{% extends "base.html" %} {% load humanize %} {% block content %}

{{ object.date}}: {{ object.filing }}

ID {{ object.id }}
Filing {{ object.filing }}
Classifications {% for c in object.classification %}{{ c }}{% if not forloop.last%}, {% endif %}{% endfor %}
Description {{ object.description }}
Agents {% for a in object.agents.all %}{{ a }}{% if not forloop.last%}, {% endif %}{% endfor %}
Supersedes prior versions {{ object.supersedes_prior_versions }}
Current {{ object.is_current }}

Summary totals

{% for sum in object.summary_amounts.all %} {% endfor %}
Label Amount
{{ sum.label }} ${{ sum.amount_value|floatformat:0|intcomma }}
{% endblock %}