{% extends 'calaccess_campaign_browser/base.html' %}
{% load humanize %}
{% block content %}
Political Parties
{% if party.total_contributions_by_year %}
Contributions by year
Year |
Total |
{% for year, total in party.total_contributions_by_year %}
{{ party }} |
${{ total|floatformat:0|intcomma }} |
{% endfor %}
{% endif %}
{% if party.total_expenditures_by_year %}
Expenditures by year
Year |
Total |
{% for year, total in party.total_expenditures_by_year %}
{{ party }} |
${{ total|floatformat:0|intcomma }} |
{% endfor %}
{% endif %}
Big Spenders
|
Candidate |
Total Expenditures |
Party |
# |
--- |
$ |
--- |
$ Hoarders
|
Candidate |
Total Expenditures |
Party |
# |
--- |
$ |
--- |
{% endblock %}