diff --git a/templates/partials/committee-report-presidential.html b/templates/partials/committee-report-presidential.html index e23f3d427..eb41d6fd9 100644 --- a/templates/partials/committee-report-presidential.html +++ b/templates/partials/committee-report-presidential.html @@ -1,38 +1,38 @@ {% with committee=context() %} {% set table_data = [ (reports.0.federal_funds_period,'Federal Funds'), - (reports.0.individual_itemized_contributions_period, 'Itemized Individual Contributions'), - (reports.0.individual_unitemized_contributions_period, 'Unitemized Individual Contributions'), - (reports.0.total_individual_contributions_period, 'Total Individual Contributions'), - (reports.0.political_party_committee_contributions_period, 'Party Committee Contributions'), - (reports.0.other_political_committee_contributions_period, 'Other Committee Contributions'), - (reports.0.candidate_contribution_period, 'Candidate Contributions'), - (reports.0.total_contributions_period, 'Total Contributions'), - (reports.0.transfers_from_affiliated_committee_period, 'Transfer from Authorized Committees'), - (reports.0.loans_received_from_candidate_period, 'Loans Made by Candidate'), - (reports.0.other_loans_received_period, 'Other Loans'), - (reports.0.total_loans_received_period, 'Total Loans Received'), - (reports.0.offsets_to_operating_expenditures_period, 'Offsets to Operating Expenditures'), - (reports.0.offsets_to_fundraising_expenditures_period, 'Fundraising Offsets'), - (reports.0.offsets_to_legal_accounting_period, 'Legal and Accounting Offsets'), - (reports.0.total_offsets_to_operating_expenditures_period, 'Total Offsets'), - (reports.0.other_receipts_period, 'Other Receipts'), + (reports.0.individual_itemized_contributions_period, 'Itemized individual contributions'), + (reports.0.individual_unitemized_contributions_period, 'Unitemized individual contributions'), + (reports.0.total_individual_contributions_period, 'Total individual contributions'), + (reports.0.political_party_committee_contributions_period, 'Party committee contributions'), + (reports.0.other_political_committee_contributions_period, 'Other committee contributions'), + (reports.0.candidate_contribution_period, 'Candidate contributions'), + (reports.0.total_contributions_period, 'Total contributions'), + (reports.0.transfers_from_affiliated_committee_period, 'Transfer from authorized committees'), + (reports.0.loans_received_from_candidate_period, 'Loans made by candidate'), + (reports.0.other_loans_received_period, 'Other loans'), + (reports.0.total_loans_received_period, 'Total loans received'), + (reports.0.offsets_to_operating_expenditures_period, 'Offsets to operating expenditures'), + (reports.0.offsets_to_fundraising_expenditures_period, 'Fundraising offsets'), + (reports.0.offsets_to_legal_accounting_period, 'Legal and accounting offsets'), + (reports.0.total_offsets_to_operating_expenditures_period, 'Total offsets'), + (reports.0.other_receipts_period, 'Other receipts'), ] %} {{ totals_table('Total Receipts', reports.0.total_receipts_period, table_data, committee.report_year, header_description='Money received by the committee' ) }} {% set table_data = [ - (reports.0.operating_expenditures_period, 'Operating Expenditures'), - (reports.0.transfers_to_other_authorized_committee_period, 'Transfers to Authorized Committees'), - (reports.0.repayments_loans_made_by_candidate_period, 'Candidate Loan Repayments'), - (reports.0.repayments_other_loans_period, 'Other Loan Repayments'), - (reports.0.total_loan_repayments_made_period, 'Total Loan Repayments'), - (reports.0.refunded_individual_contributions_period, 'Individual Refunds'), - (reports.0.refunded_political_party_committee_contributions_period, 'Political Party Refunds'), - (reports.0.refunded_other_political_committee_contributions_period, 'Other Committee Refunds'), - (reports.0.other_disbursements_period, 'Other Disbursements'), - (reports.0.total_contribution_refunds_period, 'Total Contribution refunds'), + (reports.0.operating_expenditures_period, 'Operating expenditures'), + (reports.0.transfers_to_other_authorized_committee_period, 'Transfers to authorized committees'), + (reports.0.repayments_loans_made_by_candidate_period, 'Candidate loan repayments'), + (reports.0.repayments_other_loans_period, 'Other loan repayments'), + (reports.0.total_loan_repayments_made_period, 'Total loan repayments'), + (reports.0.refunded_individual_contributions_period, 'Individual refunds'), + (reports.0.refunded_political_party_committee_contributions_period, 'Political party refunds'), + (reports.0.refunded_other_political_committee_contributions_period, 'Other committee refunds'), + (reports.0.other_disbursements_period, 'Other disbursements'), + (reports.0.total_contribution_refunds_period, 'Total contribution refunds'), ] %}