From be627b05c194d06b151ae825ec1af0ead1c842be Mon Sep 17 00:00:00 2001 From: Emileigh Barnes Date: Wed, 16 Sep 2015 12:02:28 -0400 Subject: [PATCH] Update committee-totals-presidential.html Fixes capitalization. --- .../committee-totals-presidential.html | 54 +++++++++---------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/templates/partials/committee-totals-presidential.html b/templates/partials/committee-totals-presidential.html index b50e6a3e6..0fa950c22 100644 --- a/templates/partials/committee-totals-presidential.html +++ b/templates/partials/committee-totals-presidential.html @@ -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'), ] %}