Skip to content
This repository has been archived by the owner on Dec 23, 2017. It is now read-only.

Commit

Permalink
Update committee-totals-presidential.html
Browse files Browse the repository at this point in the history
Fixes capitalization.
  • Loading branch information
emileighoutlaw committed Sep 16, 2015
1 parent 1675488 commit be627b0
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions templates/partials/committee-totals-presidential.html
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
{% with committee=context() %}
{% set table_data = [
(totals.0.federal_funds,'Federal Funds'),
(totals.0.individual_itemized_contributions, 'Itemized Individual Contributions'),
(totals.0.individual_unitemized_contributions, 'Unitemized Individual Contributions'),
(totals.0.individual_contributions, 'Total Individual Contributions'),
(totals.0.political_party_committee_contributions,'Party Committee Contributions'),
(totals.0.other_political_committee_contributions,'Other Committee Contributions'),
(totals.0.candidate_contribution, 'Candidate Contributions'),
(totals.0.contributions, 'Total Contributions'),
(totals.0.transfers_from_affiliated_committee, 'Transfer from Affiliated Committees'),
(totals.0.loans_received_from_candidate, 'Loans Made by Candidate'),
(totals.0.other_loans_received, 'Other Loans'),
(totals.0.loans_received, 'Total Loans Received'),
(totals.0.offsets_to_operating_expenditures, 'Offsets to Operating Expenditures'),
(totals.0.offsets_to_fundraising_expenditures, 'Fundraising Offsets'),
(totals.0.offsets_to_legal_accounting, 'Legal and Accounting Offsets'),
(totals.0.total_offsets_to_operating_expenditures, 'Total Offsets'),
(totals.0.other_receipts, 'Other Receipts'),
(totals.0.federal_funds,'Federal funds'),
(totals.0.individual_itemized_contributions, 'Itemized individual contributions'),
(totals.0.individual_unitemized_contributions, 'Unitemized individual contributions'),
(totals.0.individual_contributions, 'Total individual contributions'),
(totals.0.political_party_committee_contributions,'Party committee contributions'),
(totals.0.other_political_committee_contributions,'Other committee contributions'),
(totals.0.candidate_contribution, 'Candidate contributions'),
(totals.0.contributions, 'Total contributions'),
(totals.0.transfers_from_affiliated_committee, 'Transfer from affiliated committees'),
(totals.0.loans_received_from_candidate, 'Loans made by candidate'),
(totals.0.other_loans_received, 'Other loans'),
(totals.0.loans_received, 'Total loans received'),
(totals.0.offsets_to_operating_expenditures, 'Offsets to operating expenditures'),
(totals.0.offsets_to_fundraising_expenditures, 'Fundraising offsets'),
(totals.0.offsets_to_legal_accounting, 'Legal and accounting offsets'),
(totals.0.total_offsets_to_operating_expenditures, 'Total offsets'),
(totals.0.other_receipts, 'Other receipts'),
]
%}
{{ totals_table('Total Receipts', totals.0.receipts, table_data,
committee.report_year, header_description='Money received by the committee' ) }}

{% set table_data = [
(totals.0.operating_expenditures, 'Operating Expenditures'),
(totals.0.transfers_to_other_authorized_committee, 'Transfers to Authorized Committees'),
(totals.0.repayments_loans_made_by_candidate, 'Candidate Loan Repayments'),
(totals.0.repayments_other_loans, 'Other Loan Repayments'),
(totals.0.loan_repayments_made, 'Total Loan Repayments'),
(totals.0.refunded_individual_contributions, 'Individual Refunds'),
(totals.0.refunded_political_party_committee_contributions, 'Political Party Refunds'),
(totals.0.refunded_other_political_committee_contributions, 'Other Committee Refunds'),
(totals.0.contribution_refunds, 'Total Contribution refunds'),
(totals.0.other_disbursements, 'Other Disbursements'),
(totals.0.operating_expenditures, 'Operating expenditures'),
(totals.0.transfers_to_other_authorized_committee, 'Transfers to authorized committees'),
(totals.0.repayments_loans_made_by_candidate, 'Candidate loan repayments'),
(totals.0.repayments_other_loans, 'Other loan repayments'),
(totals.0.loan_repayments_made, 'Total loan repayments'),
(totals.0.refunded_individual_contributions, 'Individual refunds'),
(totals.0.refunded_political_party_committee_contributions, 'Political party refunds'),
(totals.0.refunded_other_political_committee_contributions, 'Other committee refunds'),
(totals.0.contribution_refunds, 'Total contribution refunds'),
(totals.0.other_disbursements, 'Other disbursements'),

]
%}
Expand Down

0 comments on commit be627b0

Please sign in to comment.