{% 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
| Label |
Amount |
{% for sum in object.summary_amounts.all %}
| {{ sum.label }} |
${{ sum.amount_value|floatformat:0|intcomma }} |
{% endfor %}
{% endblock %}