├── .cfignore ├── .circleci └── config.yml ├── .coveragerc ├── .cspell └── custom-dictionary-workspace.txt ├── .eslintignore ├── .eslintrc ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── task-issue.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .hound.yml ├── .jshintignore ├── .jshintrc ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── .puppeteerrc.cjs ├── .stylelintrc.json ├── CONTRIBUTING.md ├── LICENSE.md ├── Procfile ├── README.md ├── babel.config.json ├── bin ├── cf_env_setup.sh └── run.sh ├── code-gov-config.json ├── conftest.py ├── fec ├── .coveragerc ├── data │ ├── __init__.py │ ├── admin.py │ ├── api_caller.py │ ├── apps.py │ ├── constants.py │ ├── ecfr_caller.py │ ├── jinja2.py │ ├── legal_test_data.py │ ├── templates │ │ ├── browse-data.jinja │ │ ├── candidates-single.jinja │ │ ├── committees-single.jinja │ │ ├── datatable.jinja │ │ ├── election-lookup.jinja │ │ ├── elections.jinja │ │ ├── house-senate-overview.jinja │ │ ├── landing.jinja │ │ ├── layouts │ │ │ ├── main.jinja │ │ │ ├── sidebar-page.jinja │ │ │ └── widgets.jinja │ │ ├── macros │ │ │ ├── breadcrumbs.jinja │ │ │ ├── bythenumbers.jinja │ │ │ ├── chart-committee-overviews.jinja │ │ │ ├── cycle-select.jinja │ │ │ ├── datatables.jinja │ │ │ ├── disclaimer.jinja │ │ │ ├── document.jinja │ │ │ ├── entity-pages.jinja │ │ │ ├── filters │ │ │ │ ├── checkbox.jinja │ │ │ │ ├── committee-types.jinja │ │ │ │ ├── contributor-states.jinja │ │ │ │ ├── date.jinja │ │ │ │ ├── districts.jinja │ │ │ │ ├── dropdown-json.jinja │ │ │ │ ├── election-filter.jinja │ │ │ │ ├── filing-frequency.jinja │ │ │ │ ├── ie-reports.jinja │ │ │ │ ├── keyword-proximity.jinja │ │ │ │ ├── office-sought.jinja │ │ │ │ ├── parties.jinja │ │ │ │ ├── range.jinja │ │ │ │ ├── report-type.jinja │ │ │ │ ├── states.jinja │ │ │ │ ├── support-oppose.jinja │ │ │ │ ├── text.jinja │ │ │ │ ├── typeahead-filter.jinja │ │ │ │ ├── version-status.jinja │ │ │ │ └── years.jinja │ │ │ ├── missing-transferred.jinja │ │ │ ├── missing.jinja │ │ │ ├── null.jinja │ │ │ ├── page-header.jinja │ │ │ ├── reaction-box.jinja │ │ │ ├── reporting-info.jinja │ │ │ ├── search.jinja │ │ │ ├── tables.jinja │ │ │ └── widgets.jinja │ │ ├── partials │ │ │ ├── allocated-federal-nonfederal-disbursements-filter.jinja │ │ │ ├── audit-filter.jinja │ │ │ ├── browse-data │ │ │ │ ├── bulk-data.jinja │ │ │ │ ├── candidates.jinja │ │ │ │ ├── committees.jinja │ │ │ │ ├── external.jinja │ │ │ │ ├── filings-reports.jinja │ │ │ │ ├── historical.jinja │ │ │ │ ├── loans-debts.jinja │ │ │ │ ├── raising.jinja │ │ │ │ └── spending.jinja │ │ │ ├── candidate │ │ │ │ ├── about-candidate.jinja │ │ │ │ ├── filings-tab.jinja │ │ │ │ ├── financial-summary.jinja │ │ │ │ ├── other-spending-tab.jinja │ │ │ │ ├── raising.jinja │ │ │ │ └── spending.jinja │ │ │ ├── candidates-filter.jinja │ │ │ ├── candidates-office-filter.jinja │ │ │ ├── committee-totals-house-senate.jinja │ │ │ ├── committee-totals-ie-only.jinja │ │ │ ├── committee-totals-pac-party.jinja │ │ │ ├── committee-totals-presidential.jinja │ │ │ ├── committee │ │ │ │ ├── about-committee.jinja │ │ │ │ ├── filings.jinja │ │ │ │ ├── financial-summary.jinja │ │ │ │ ├── raising.jinja │ │ │ │ └── spending.jinja │ │ │ ├── committees-filter.jinja │ │ │ ├── communication-costs-filter.jinja │ │ │ ├── datatable-modal.jinja │ │ │ ├── debts-filter.jinja │ │ │ ├── disbursements-filter.jinja │ │ │ ├── electioneering-communications-filter.jinja │ │ │ ├── elections │ │ │ │ ├── about-this-election-tab.jinja │ │ │ │ ├── election-data-and-compliance-tab.jinja │ │ │ │ ├── election-profile-cards.jinja │ │ │ │ ├── other-spending-tab.jinja │ │ │ │ └── sidebar-nav.jinja │ │ │ ├── filings-filter.jinja │ │ │ ├── filters.jinja │ │ │ ├── filters │ │ │ │ ├── active-candidates.jinja │ │ │ │ ├── audit-committee-types.jinja │ │ │ │ ├── efiling.jinja │ │ │ │ ├── form-type.jinja │ │ │ │ ├── primary-general.jinja │ │ │ │ ├── report-type.jinja │ │ │ │ └── unique-receipts.jinja │ │ │ ├── google-tag-manager-noscript.jinja │ │ │ ├── google-tag-manager-script.jinja │ │ │ ├── hero.jinja │ │ │ ├── house-senate-overview │ │ │ │ ├── section-contributions-across-time.jinja │ │ │ │ ├── section-summary.jinja │ │ │ │ └── section-totals-for-all-elections.jinja │ │ │ ├── independent-expenditures-filter.jinja │ │ │ ├── individual-contributions-filter.jinja │ │ │ ├── loading-tab.jinja │ │ │ ├── loans-filter.jinja │ │ │ ├── meta-tags-preconnects.jinja │ │ │ ├── meta-tags.jinja │ │ │ ├── national-party-account-disbursements-filter.jinja │ │ │ ├── national-party-account-receipts-filter.jinja │ │ │ ├── operating-expenditures-filter.jinja │ │ │ ├── pac-party-filter.jinja │ │ │ ├── party-coordinated-expenditures-filter.jinja │ │ │ ├── receipts-filter.jinja │ │ │ ├── reports-filter.jinja │ │ │ ├── rulemakings-filter.jinja │ │ │ ├── warnings.jinja │ │ │ └── widgets │ │ │ │ └── contributions-by-state.jinja │ │ ├── pres-finance-map.jinja │ │ ├── raising-bythenumbers.jinja │ │ ├── search-results.jinja │ │ ├── spending-bythenumbers.jinja │ │ └── widgets │ │ │ ├── aggregate-totals.jinja │ │ │ ├── contributions-by-state.jinja │ │ │ └── pres-finance-map.jinja │ ├── templatetags │ │ ├── __init__.py │ │ └── filters.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_candidate.py │ │ ├── test_committee.py │ │ ├── test_datatables.py │ │ ├── test_legal_search.py │ │ └── test_utils.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── views_datatables.py ├── extend_admin │ └── wagtailadmin │ │ ├── base.html │ │ └── widgets │ │ └── chooser.html ├── fec │ ├── __init__.py │ ├── constants.py │ ├── context.py │ ├── draftail │ │ ├── anchor.py │ │ ├── glossary.py │ │ └── sansserif.py │ ├── forms.py │ ├── middleware.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dev.py │ │ ├── env.py │ │ └── production.py │ ├── slack.py │ ├── static │ │ ├── css │ │ │ └── customize-editor.css │ │ ├── fonts │ │ │ ├── fec-currencymono-bold.eot │ │ │ ├── fec-currencymono-bold.ttf │ │ │ ├── fec-currencymono-bold.woff │ │ │ ├── fec-currencymono-bold.woff2 │ │ │ ├── fec-currencymono-bolditalic.eot │ │ │ ├── fec-currencymono-bolditalic.ttf │ │ │ ├── fec-currencymono-bolditalic.woff │ │ │ ├── fec-currencymono-bolditalic.woff2 │ │ │ ├── fec-currencymono-italic.eot │ │ │ ├── fec-currencymono-italic.ttf │ │ │ ├── fec-currencymono-italic.woff │ │ │ ├── fec-currencymono-italic.woff2 │ │ │ ├── fec-currencymono-regular.eot │ │ │ ├── fec-currencymono-regular.ttf │ │ │ ├── fec-currencymono-regular.woff │ │ │ ├── fec-currencymono-regular.woff2 │ │ │ ├── gandhiserif-bold.eot │ │ │ ├── gandhiserif-bold.ttf │ │ │ ├── gandhiserif-bold.woff │ │ │ ├── gandhiserif-bold.woff2 │ │ │ ├── gandhiserif-bolditalic.eot │ │ │ ├── gandhiserif-bolditalic.ttf │ │ │ ├── gandhiserif-bolditalic.woff │ │ │ ├── gandhiserif-bolditalic.woff2 │ │ │ ├── gandhiserif-italic.eot │ │ │ ├── gandhiserif-italic.ttf │ │ │ ├── gandhiserif-italic.woff │ │ │ ├── gandhiserif-italic.woff2 │ │ │ ├── gandhiserif-regular.eot │ │ │ ├── gandhiserif-regular.ttf │ │ │ ├── gandhiserif-regular.woff │ │ │ ├── gandhiserif-regular.woff2 │ │ │ ├── karla-bold.eot │ │ │ ├── karla-bold.ttf │ │ │ ├── karla-bold.woff │ │ │ ├── karla-bold.woff2 │ │ │ ├── karla-regular.eot │ │ │ ├── karla-regular.ttf │ │ │ ├── karla-regular.woff │ │ │ └── karla-regular.woff2 │ │ ├── icons │ │ │ ├── icon-template.scss │ │ │ ├── input │ │ │ │ ├── all-files.svg │ │ │ │ ├── arrow-down-border.svg │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-border.svg │ │ │ │ ├── arrow-left-circle.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right-border.svg │ │ │ │ ├── arrow-right-circle.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-target.svg │ │ │ │ ├── arrow-up-border.svg │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── bang-circle.svg │ │ │ │ ├── bang.svg │ │ │ │ ├── bluesky-circle.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bulk.svg │ │ │ │ ├── cal-add.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── candidate.svg │ │ │ │ ├── cfr.svg │ │ │ │ ├── check-circle-outline.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check.svg │ │ │ │ ├── checklist-2.svg │ │ │ │ ├── checklist.svg │ │ │ │ ├── clipboard-checklist.svg │ │ │ │ ├── clock-reverse.svg │ │ │ │ ├── committee-audit.svg │ │ │ │ ├── committee.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── dash.svg │ │ │ │ ├── data-flag.svg │ │ │ │ ├── decree.svg │ │ │ │ ├── direction-sign.svg │ │ │ │ ├── disbursement.svg │ │ │ │ ├── document.svg │ │ │ │ ├── download.svg │ │ │ │ ├── election.svg │ │ │ │ ├── example-document.svg │ │ │ │ ├── exclamation-bubble.svg │ │ │ │ ├── facebook-circle.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── file-box.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── financial-document.svg │ │ │ │ ├── folder-with-person.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── github-circle.svg │ │ │ │ ├── graph-horizontal-ordered.svg │ │ │ │ ├── graph-horizontal-unordered.svg │ │ │ │ ├── graph.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── hand-envelope.svg │ │ │ │ ├── hand-money.svg │ │ │ │ ├── individual-contributions.svg │ │ │ │ ├── info-circle-outline.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── list.svg │ │ │ │ ├── magnifying-glass-arrow.svg │ │ │ │ ├── magnifying-glass.svg │ │ │ │ ├── mallet.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-us-states.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── moving-envelope-circle.svg │ │ │ │ ├── moving-envelope.svg │ │ │ │ ├── notebook.svg │ │ │ │ ├── org-chart.svg │ │ │ │ ├── papers.svg │ │ │ │ ├── person-location.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── play-button.svg │ │ │ │ ├── plus-circle 2.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── point-down-circle.svg │ │ │ │ ├── pop-up.svg │ │ │ │ ├── question-bubble.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── scale.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shield-scales.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── stamp-circle.svg │ │ │ │ ├── star.svg │ │ │ │ ├── subsection-doc.svg │ │ │ │ ├── table.svg │ │ │ │ ├── telephone-circle.svg │ │ │ │ ├── timer.svg │ │ │ │ ├── training.svg │ │ │ │ ├── twitter-circle.svg │ │ │ │ ├── two-candidates.svg │ │ │ │ ├── updates.svg │ │ │ │ ├── usc.svg │ │ │ │ ├── x-circle.svg │ │ │ │ ├── x-twitter-circle.svg │ │ │ │ ├── x.svg │ │ │ │ └── youtube-circle.svg │ │ │ └── output │ │ │ │ ├── all-files.svg │ │ │ │ ├── arrow-down-border.svg │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-border.svg │ │ │ │ ├── arrow-left-circle.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right-border.svg │ │ │ │ ├── arrow-right-circle.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-target.svg │ │ │ │ ├── arrow-up-border.svg │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── bang-circle.svg │ │ │ │ ├── bang.svg │ │ │ │ ├── bluesky-circle.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bulk.svg │ │ │ │ ├── cal-add.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── candidate.svg │ │ │ │ ├── cfr.svg │ │ │ │ ├── check-circle-outline.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check.svg │ │ │ │ ├── checklist-2.svg │ │ │ │ ├── checklist.svg │ │ │ │ ├── clipboard-checklist.svg │ │ │ │ ├── clock-reverse.svg │ │ │ │ ├── committee-audit.svg │ │ │ │ ├── committee.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── dash.svg │ │ │ │ ├── data-flag.svg │ │ │ │ ├── decree.svg │ │ │ │ ├── direction-sign.svg │ │ │ │ ├── disbursement.svg │ │ │ │ ├── document.svg │ │ │ │ ├── download.svg │ │ │ │ ├── election.svg │ │ │ │ ├── example-document.svg │ │ │ │ ├── exclamation-bubble.svg │ │ │ │ ├── facebook-circle.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── file-box.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── financial-document.svg │ │ │ │ ├── folder-with-person.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── github-circle.svg │ │ │ │ ├── graph-horizontal-ordered.svg │ │ │ │ ├── graph-horizontal-unordered.svg │ │ │ │ ├── graph.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── hand-envelope.svg │ │ │ │ ├── hand-money.svg │ │ │ │ ├── individual-contributions.svg │ │ │ │ ├── info-circle-outline.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── list.svg │ │ │ │ ├── magnifying-glass-arrow.svg │ │ │ │ ├── magnifying-glass.svg │ │ │ │ ├── mallet.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-us-states.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── moving-envelope-circle.svg │ │ │ │ ├── moving-envelope.svg │ │ │ │ ├── notebook.svg │ │ │ │ ├── org-chart.svg │ │ │ │ ├── papers.svg │ │ │ │ ├── person-location.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── play-button.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── point-down-circle.svg │ │ │ │ ├── pop-up.svg │ │ │ │ ├── question-bubble.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── scale.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shield-scales.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── stamp-circle.svg │ │ │ │ ├── star.svg │ │ │ │ ├── subsection-doc.svg │ │ │ │ ├── table.svg │ │ │ │ ├── telephone-circle.svg │ │ │ │ ├── timer.svg │ │ │ │ ├── training.svg │ │ │ │ ├── twitter-circle.svg │ │ │ │ ├── two-candidates.svg │ │ │ │ ├── updates.svg │ │ │ │ ├── usc.svg │ │ │ │ ├── x-circle.svg │ │ │ │ ├── x-twitter-circle.svg │ │ │ │ ├── x.svg │ │ │ │ └── youtube-circle.svg │ │ ├── img │ │ │ ├── Homepage-hero-image-flag.jpg │ │ │ ├── TV-Gray-Wall-Only-850.png │ │ │ ├── angle-arrow-down-primary.png │ │ │ ├── angle-arrow-down-primary.svg │ │ │ ├── angle-arrow-up-primary.png │ │ │ ├── angle-arrow-up-primary.svg │ │ │ ├── example-circle.svg │ │ │ ├── favicon │ │ │ │ ├── data │ │ │ │ │ ├── favicon-120x120.png │ │ │ │ │ ├── favicon-152x152.png │ │ │ │ │ ├── favicon-167x167.png │ │ │ │ │ ├── favicon-180x180.png │ │ │ │ │ └── favicon-192x192.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-full.svg │ │ │ │ ├── favicon-small.svg │ │ │ │ ├── favicon.ico │ │ │ │ ├── general │ │ │ │ │ ├── favicon-120x120.png │ │ │ │ │ ├── favicon-152x152.png │ │ │ │ │ ├── favicon-167x167.png │ │ │ │ │ ├── favicon-180x180.png │ │ │ │ │ ├── favicon-192x192.png │ │ │ │ │ ├── favicon-200x200.png │ │ │ │ │ ├── favicon-48x48.png │ │ │ │ │ └── favicon.svg │ │ │ │ ├── help │ │ │ │ │ ├── favicon-120x120.png │ │ │ │ │ ├── favicon-152x152.png │ │ │ │ │ ├── favicon-167x167.png │ │ │ │ │ ├── favicon-180x180.png │ │ │ │ │ └── favicon-192x192.png │ │ │ │ └── legal │ │ │ │ │ ├── favicon-120x120.png │ │ │ │ │ ├── favicon-152x152.png │ │ │ │ │ ├── favicon-167x167.png │ │ │ │ │ ├── favicon-180x180.png │ │ │ │ │ └── favicon-192x192.png │ │ │ ├── feature--candidate-support.jpg │ │ │ ├── feature--compare-candidates.jpg │ │ │ ├── feature--contributions-narrow.jpg │ │ │ ├── feature--contributions.jpg │ │ │ ├── feature--data.png │ │ │ ├── feature--dates.jpg │ │ │ ├── feature--filing.jpg │ │ │ ├── feature--forms.jpg │ │ │ ├── feature--legal.png │ │ │ ├── feature--reporting.png │ │ │ ├── feature--training.jpg │ │ │ ├── fec-office.jpg │ │ │ ├── financial-document-circle.svg │ │ │ ├── headshot--goodman.jpg │ │ │ ├── headshot--hunter.jpg │ │ │ ├── headshot--no-photo.jpg │ │ │ ├── headshot--petersen.jpg │ │ │ ├── headshot--walther.jpg │ │ │ ├── headshot--weintraub.jpg │ │ │ ├── hero-about.jpg │ │ │ ├── hero-data.jpg │ │ │ ├── hero-home.jpg │ │ │ ├── hero-legal.jpg │ │ │ ├── hero-oig.png │ │ │ ├── hero-press.jpg │ │ │ ├── hero-registration.jpg │ │ │ ├── i-bluesky--primary.png │ │ │ ├── i-bluesky--primary.svg │ │ │ ├── i-calendar--secondary-contrast.svg │ │ │ ├── i-calendar-circle.svg │ │ │ ├── i-complex--calendar.png │ │ │ ├── i-complex--calendar.svg │ │ │ ├── i-complex--data--gray-lightest.svg │ │ │ ├── i-complex--data.png │ │ │ ├── i-complex--data.svg │ │ │ ├── i-complex--legal--gray-lightest.svg │ │ │ ├── i-complex--legal.png │ │ │ ├── i-complex--legal.svg │ │ │ ├── i-complex--regreport--gray-lightest.svg │ │ │ ├── i-complex--regreport.png │ │ │ ├── i-complex--regreport.svg │ │ │ ├── i-document--secondary-contrast.svg │ │ │ ├── i-document-circle.svg │ │ │ ├── i-elections--neutral.svg │ │ │ ├── i-elections--primary-contrast.svg │ │ │ ├── i-elections--primary.png │ │ │ ├── i-elections--primary.svg │ │ │ ├── i-email--inverse.png │ │ │ ├── i-email--inverse.svg │ │ │ ├── i-email--primary.png │ │ │ ├── i-email--primary.svg │ │ │ ├── i-github--inverse.png │ │ │ ├── i-github--inverse.svg │ │ │ ├── i-github--primary.png │ │ │ ├── i-github--primary.svg │ │ │ ├── i-graph--primary-contrast.svg │ │ │ ├── i-mail--primary.png │ │ │ ├── i-mail--primary.svg │ │ │ ├── i-map--primary.svg │ │ │ ├── i-overviews--primary.svg │ │ │ ├── i-phone--primary.png │ │ │ ├── i-phone--primary.svg │ │ │ ├── i-table--neutral.svg │ │ │ ├── i-table--primary-contrast.svg │ │ │ ├── i-table--primary.svg │ │ │ ├── i-twitter--primary.png │ │ │ ├── i-twitter--primary.svg │ │ │ ├── i-x-twitter--primary.png │ │ │ ├── i-x-twitter--primary.svg │ │ │ ├── icon-dot-gov.svg │ │ │ ├── icon-https.svg │ │ │ ├── loading--primary.gif │ │ │ ├── loading-ellipsis-gray.gif │ │ │ ├── loading-ellipsis.gif │ │ │ ├── loading.gif │ │ │ ├── logo-oig-color.svg │ │ │ ├── map-chart-icon.svg │ │ │ ├── map-election-search-default.png │ │ │ ├── map-us-states-primary-contrast.svg │ │ │ ├── new-tv-bkgd-wide.png │ │ │ ├── print-logo.png │ │ │ ├── reaction-confusing.svg │ │ │ ├── reaction-informative.svg │ │ │ ├── reaction-not-interested.svg │ │ │ ├── seal--cropped.png │ │ │ ├── seal--cropped.svg │ │ │ ├── seal--inverse.png │ │ │ ├── seal--inverse.svg │ │ │ ├── seal.png │ │ │ ├── seal.svg │ │ │ ├── social │ │ │ │ ├── fec-data.png │ │ │ │ ├── fec-help.png │ │ │ │ ├── fec-legal.png │ │ │ │ ├── fec-logo.png │ │ │ │ ├── fec-microphone.png │ │ │ │ ├── fec-microphones.png │ │ │ │ ├── fec-pen.png │ │ │ │ └── fec-seal.png │ │ │ ├── thumbnail--ao-brochure.png │ │ │ ├── thumbnail--ao-statistics.png │ │ │ ├── thumbnail--audio.png │ │ │ ├── thumbnail--candidates.jpg │ │ │ ├── thumbnail--captions.png │ │ │ ├── thumbnail--citizens-guide-brochure.png │ │ │ ├── thumbnail--enforcement-process.png │ │ │ ├── thumbnail--feca.jpg │ │ │ ├── thumbnail--filing-a-complaint.png │ │ │ ├── thumbnail--nonconnected.jpg │ │ │ ├── thumbnail--orgs.jpg │ │ │ ├── thumbnail--parties.jpg │ │ │ ├── thumbnail--pdf-guide.png │ │ │ ├── thumbnail--video.png │ │ │ ├── tooltip-point.svg │ │ │ ├── us_flag_small.png │ │ │ ├── wordmark.png │ │ │ └── wordmark.svg │ │ ├── js │ │ │ ├── data-init.js │ │ │ ├── data │ │ │ │ ├── create_districts_topo.sh │ │ │ │ ├── districts.json │ │ │ │ ├── merge_shape_files.py │ │ │ │ ├── notes.md │ │ │ │ ├── state.json │ │ │ │ ├── stateDistricts.json │ │ │ │ ├── terms.json │ │ │ │ └── us-states-10m.json │ │ │ ├── draftail │ │ │ │ ├── Anchor.js │ │ │ │ ├── App.js │ │ │ │ ├── Glossary.js │ │ │ │ ├── SansSerif.js │ │ │ │ ├── components │ │ │ │ │ └── Modal.js │ │ │ │ └── utils.js │ │ │ ├── global.js │ │ │ ├── init.js │ │ │ ├── legal-search-ao.js │ │ │ ├── legal.js │ │ │ ├── modules │ │ │ │ ├── accessibility.js │ │ │ │ ├── analytics.js │ │ │ │ ├── audit-category-sub-category.js │ │ │ │ ├── audit_tags.js │ │ │ │ ├── calc-admin-fines-logic.js │ │ │ │ ├── calc-admin-fines-modal.js │ │ │ │ ├── calc-admin-fines.js │ │ │ │ ├── calendar-helpers.js │ │ │ │ ├── calendar-list-view.js │ │ │ │ ├── calendar-tooltip.js │ │ │ │ ├── calendar.js │ │ │ │ ├── column-helpers.js │ │ │ │ ├── columns.js │ │ │ │ ├── container-queries.js │ │ │ │ ├── cycle-select.js │ │ │ │ ├── data-map.js │ │ │ │ ├── decoders.js │ │ │ │ ├── download.js │ │ │ │ ├── dropdowns.js │ │ │ │ ├── election-form.js │ │ │ │ ├── election-lookup.js │ │ │ │ ├── election-map.js │ │ │ │ ├── election-search.js │ │ │ │ ├── election-summary.js │ │ │ │ ├── election-utils.js │ │ │ │ ├── events.js │ │ │ │ ├── fec-timeline.js │ │ │ │ ├── feedback.js │ │ │ │ ├── filings.js │ │ │ │ ├── filters-event.js │ │ │ │ ├── filters │ │ │ │ │ ├── checkbox-filter.js │ │ │ │ │ ├── date-filter.js │ │ │ │ │ ├── election-filter.js │ │ │ │ │ ├── filter-base.js │ │ │ │ │ ├── filter-control.js │ │ │ │ │ ├── filter-panel.js │ │ │ │ │ ├── filter-set.js │ │ │ │ │ ├── filter-tags.js │ │ │ │ │ ├── filter-typeahead.js │ │ │ │ │ ├── keyword-proximity-filter.js │ │ │ │ │ ├── multi-filter.js │ │ │ │ │ ├── range-filter.js │ │ │ │ │ ├── select-filter.js │ │ │ │ │ ├── text-filter.js │ │ │ │ │ ├── toggle-filter.js │ │ │ │ │ ├── typeahead-filter.js │ │ │ │ │ └── validate-date-filters.js │ │ │ │ ├── fips.js │ │ │ │ ├── form-nav.js │ │ │ │ ├── helpers.js │ │ │ │ ├── home-events.js │ │ │ │ ├── keyword-modal.js │ │ │ │ ├── line-chart-committees.js │ │ │ │ ├── line-chart.js │ │ │ │ ├── listeners.js │ │ │ │ ├── load-recaptcha.js │ │ │ │ ├── maps-event.js │ │ │ │ ├── maps.js │ │ │ │ ├── other-spending-totals.js │ │ │ │ ├── party-money-bars.js │ │ │ │ ├── performance.js │ │ │ │ ├── search.js │ │ │ │ ├── site-nav.js │ │ │ │ ├── skip-nav.js │ │ │ │ ├── statistical-summary-archive.js │ │ │ │ ├── table-columns.js │ │ │ │ ├── table-panels.js │ │ │ │ ├── table-switcher.js │ │ │ │ ├── tables.js │ │ │ │ ├── toc.js │ │ │ │ ├── toggle.js │ │ │ │ ├── top-entities.js │ │ │ │ ├── top-list.js │ │ │ │ ├── typeahead.js │ │ │ │ └── urls.js │ │ │ ├── pages │ │ │ │ ├── bythenumbers.js │ │ │ │ ├── calendar-page.js │ │ │ │ ├── candidate-single.js │ │ │ │ ├── committee-single.js │ │ │ │ ├── contact-form.js │ │ │ │ ├── data-browse-data.js │ │ │ │ ├── data-landing.js │ │ │ │ ├── datatable-allocated-federal-nonfederal-disbursements.js │ │ │ │ ├── datatable-audit.js │ │ │ │ ├── datatable-candidates-office.js │ │ │ │ ├── datatable-candidates.js │ │ │ │ ├── datatable-committees.js │ │ │ │ ├── datatable-communication-costs.js │ │ │ │ ├── datatable-debts.js │ │ │ │ ├── datatable-disbursements.js │ │ │ │ ├── datatable-electioneering-communications.js │ │ │ │ ├── datatable-filings.js │ │ │ │ ├── datatable-independent-expenditures.js │ │ │ │ ├── datatable-individual-contributions.js │ │ │ │ ├── datatable-loans.js │ │ │ │ ├── datatable-national-party-account-disbursements.js │ │ │ │ ├── datatable-national-party-account-receipts.js │ │ │ │ ├── datatable-operating-expenditures.js │ │ │ │ ├── datatable-pac-party.js │ │ │ │ ├── datatable-party-coordinated-expenditures.js │ │ │ │ ├── datatable-receipts.js │ │ │ │ ├── datatable-reports.js │ │ │ │ ├── datatable-rulemakings.js │ │ │ │ ├── election-lookup.js │ │ │ │ ├── elections.js │ │ │ │ ├── home.js │ │ │ │ ├── house-senate-overview-across-time.js │ │ │ │ ├── house-senate-overview-summary.js │ │ │ │ ├── house-senate-overview-totals.js │ │ │ │ ├── legal.js │ │ │ │ ├── reaction-box.js │ │ │ │ ├── reporting-dates-tables.js │ │ │ │ ├── statistical-summary-archive.js │ │ │ │ └── statistical-summary.js │ │ │ ├── templates │ │ │ │ ├── allocated-federal-nonfederal-disbursements.hbs │ │ │ │ ├── audit_tags.hbs │ │ │ │ ├── calendar │ │ │ │ │ ├── details.hbs │ │ │ │ │ ├── download.hbs │ │ │ │ │ ├── events.hbs │ │ │ │ │ ├── listToggles.hbs │ │ │ │ │ └── subscribe.hbs │ │ │ │ ├── candidateStateMap.hbs │ │ │ │ ├── candidates.hbs │ │ │ │ ├── committees.hbs │ │ │ │ ├── communication-costs.hbs │ │ │ │ ├── comparison.hbs │ │ │ │ ├── coverageEndDate.hbs │ │ │ │ ├── debts.hbs │ │ │ │ ├── disbursements.hbs │ │ │ │ ├── districts.hbs │ │ │ │ ├── download │ │ │ │ │ ├── container.hbs │ │ │ │ │ └── item.hbs │ │ │ │ ├── election-cycles.hbs │ │ │ │ ├── electionCycle.hbs │ │ │ │ ├── electionCycles.hbs │ │ │ │ ├── electionNoResults.hbs │ │ │ │ ├── electionOffices.hbs │ │ │ │ ├── electionResult.hbs │ │ │ │ ├── electionZipWarning.hbs │ │ │ │ ├── electioneering-communications.hbs │ │ │ │ ├── feedback.hbs │ │ │ │ ├── homepage │ │ │ │ │ └── events-and-deadlines.hbs │ │ │ │ ├── independent-expenditures.hbs │ │ │ │ ├── loans.hbs │ │ │ │ ├── national-party-account-disbursements.hbs │ │ │ │ ├── national-party-account-receipts.hbs │ │ │ │ ├── pac-party.hbs │ │ │ │ ├── party-coordinated-expenditures.hbs │ │ │ │ ├── receipts.hbs │ │ │ │ ├── reports │ │ │ │ │ ├── candidate.hbs │ │ │ │ │ ├── ie-only.hbs │ │ │ │ │ ├── pac.hbs │ │ │ │ │ └── reportType.hbs │ │ │ │ ├── tables │ │ │ │ │ ├── exportWidget.hbs │ │ │ │ │ ├── noData.hbs │ │ │ │ │ └── title.hbs │ │ │ │ ├── top-entity-row.hbs │ │ │ │ └── upcomingPresidential.hbs │ │ │ ├── vendor │ │ │ │ ├── beautify-html.js │ │ │ │ ├── jquery.htmlClean.min.js │ │ │ │ └── tablist.js │ │ │ └── widgets │ │ │ │ ├── aggregate-totals-box.js │ │ │ │ ├── aggregate-totals.js │ │ │ │ ├── contributions-by-state-box.js │ │ │ │ ├── contributions-by-state.js │ │ │ │ ├── pres-finance-map-box.js │ │ │ │ └── widget-vars.js │ │ └── scss │ │ │ ├── _fonts.scss │ │ │ ├── _functions.scss │ │ │ ├── _global-common.scss │ │ │ ├── _global.scss │ │ │ ├── _grid.scss │ │ │ ├── _icon-variables.scss │ │ │ ├── _variables.scss │ │ │ ├── base.scss │ │ │ ├── calendar.scss │ │ │ ├── common.scss │ │ │ ├── components │ │ │ ├── _accordions.scss │ │ │ ├── _agendas.scss │ │ │ ├── _articles.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _breakdowns.scss │ │ │ ├── _buttons.scss │ │ │ ├── _calc-admin-fines.scss │ │ │ ├── _calendar.scss │ │ │ ├── _callouts.scss │ │ │ ├── _candidate-page.scss │ │ │ ├── _cards.scss │ │ │ ├── _charts.scss │ │ │ ├── _committee-snapshot.scss │ │ │ ├── _contact-form.scss │ │ │ ├── _contact-items.scss │ │ │ ├── _cycle-select.scss │ │ │ ├── _data-container.scss │ │ │ ├── _data-landing-callouts.scss │ │ │ ├── _datatable-panel.scss │ │ │ ├── _datatables.scss │ │ │ ├── _date-grid.scss │ │ │ ├── _documents.scss │ │ │ ├── _downloads.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _entity-header.scss │ │ │ ├── _examples.scss │ │ │ ├── _fec-offices.scss │ │ │ ├── _fec-org-chart.scss │ │ │ ├── _feedback.scss │ │ │ ├── _figures.scss │ │ │ ├── _filters.scss │ │ │ ├── _footer.scss │ │ │ ├── _form-styles.scss │ │ │ ├── _glossary.scss │ │ │ ├── _headings.scss │ │ │ ├── _hero.scss │ │ │ ├── _icon-headings.scss │ │ │ ├── _icons.scss │ │ │ ├── _legal-search.scss │ │ │ ├── _list-styles.scss │ │ │ ├── _maps.scss │ │ │ ├── _mega-menu.scss │ │ │ ├── _messages.scss │ │ │ ├── _modals.scss │ │ │ ├── _nav.scss │ │ │ ├── _options.scss │ │ │ ├── _overlay.scss │ │ │ ├── _overviews.scss │ │ │ ├── _page-headers.scss │ │ │ ├── _pagination.scss │ │ │ ├── _posts.scss │ │ │ ├── _reaction-boxes.scss │ │ │ ├── _responsive-object.scss │ │ │ ├── _results-info.scss │ │ │ ├── _richtext.scss │ │ │ ├── _search-bar.scss │ │ │ ├── _search-controls.scss │ │ │ ├── _search-results.scss │ │ │ ├── _side-nav.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _site-header.scss │ │ │ ├── _table-styles.scss │ │ │ ├── _tags.scss │ │ │ ├── _toggles.scss │ │ │ ├── _tooltips.scss │ │ │ └── _type-styles.scss │ │ │ ├── data-landing.scss │ │ │ ├── datatables.scss │ │ │ ├── elections.scss │ │ │ ├── elements │ │ │ ├── _elements.scss │ │ │ ├── _forms.scss │ │ │ ├── _images.scss │ │ │ ├── _links.scss │ │ │ ├── _lists.scss │ │ │ ├── _tables.scss │ │ │ └── _typography.scss │ │ │ ├── entity.scss │ │ │ ├── fec-timeline.scss │ │ │ ├── home.scss │ │ │ ├── layout │ │ │ ├── _grid.scss │ │ │ ├── _layout.scss │ │ │ └── _slabs.scss │ │ │ ├── legal-common.scss │ │ │ ├── legal.scss │ │ │ ├── mixins │ │ │ ├── _icon-mixins.scss │ │ │ ├── _type-mixins.scss │ │ │ └── _utilities.scss │ │ │ ├── vendor │ │ │ ├── bourbon │ │ │ │ ├── _bourbon-deprecated-upcoming.scss │ │ │ │ ├── _bourbon.scss │ │ │ │ ├── addons │ │ │ │ │ ├── _border-color.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _border-style.scss │ │ │ │ │ ├── _border-width.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _ellipsis.scss │ │ │ │ │ ├── _font-stacks.scss │ │ │ │ │ ├── _hide-text.scss │ │ │ │ │ ├── _margin.scss │ │ │ │ │ ├── _padding.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _prefixer.scss │ │ │ │ │ ├── _retina-image.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _text-inputs.scss │ │ │ │ │ ├── _timing-functions.scss │ │ │ │ │ ├── _triangle.scss │ │ │ │ │ └── _word-wrap.scss │ │ │ │ ├── css3 │ │ │ │ │ ├── _animation.scss │ │ │ │ │ ├── _appearance.scss │ │ │ │ │ ├── _backface-visibility.scss │ │ │ │ │ ├── _background-image.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ ├── _border-image.scss │ │ │ │ │ ├── _calc.scss │ │ │ │ │ ├── _columns.scss │ │ │ │ │ ├── _filter.scss │ │ │ │ │ ├── _flex-box.scss │ │ │ │ │ ├── _font-face.scss │ │ │ │ │ ├── _font-feature-settings.scss │ │ │ │ │ ├── _hidpi-media-query.scss │ │ │ │ │ ├── _hyphens.scss │ │ │ │ │ ├── _image-rendering.scss │ │ │ │ │ ├── _keyframes.scss │ │ │ │ │ ├── _linear-gradient.scss │ │ │ │ │ ├── _perspective.scss │ │ │ │ │ ├── _placeholder.scss │ │ │ │ │ ├── _radial-gradient.scss │ │ │ │ │ ├── _selection.scss │ │ │ │ │ ├── _text-decoration.scss │ │ │ │ │ ├── _transform.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ └── _user-select.scss │ │ │ │ ├── functions │ │ │ │ │ ├── _assign-inputs.scss │ │ │ │ │ ├── _contains-falsy.scss │ │ │ │ │ ├── _contains.scss │ │ │ │ │ ├── _is-length.scss │ │ │ │ │ ├── _is-light.scss │ │ │ │ │ ├── _is-number.scss │ │ │ │ │ ├── _is-size.scss │ │ │ │ │ ├── _modular-scale.scss │ │ │ │ │ ├── _px-to-em.scss │ │ │ │ │ ├── _px-to-rem.scss │ │ │ │ │ ├── _shade.scss │ │ │ │ │ ├── _strip-units.scss │ │ │ │ │ ├── _tint.scss │ │ │ │ │ ├── _transition-property-name.scss │ │ │ │ │ └── _unpack.scss │ │ │ │ ├── helpers │ │ │ │ │ ├── _convert-units.scss │ │ │ │ │ ├── _directional-values.scss │ │ │ │ │ ├── _font-source-declaration.scss │ │ │ │ │ ├── _gradient-positions-parser.scss │ │ │ │ │ ├── _linear-angle-parser.scss │ │ │ │ │ ├── _linear-gradient-parser.scss │ │ │ │ │ ├── _linear-positions-parser.scss │ │ │ │ │ ├── _linear-side-corner-parser.scss │ │ │ │ │ ├── _radial-arg-parser.scss │ │ │ │ │ ├── _radial-gradient-parser.scss │ │ │ │ │ ├── _radial-positions-parser.scss │ │ │ │ │ ├── _render-gradients.scss │ │ │ │ │ ├── _shape-size-stripper.scss │ │ │ │ │ └── _str-to-num.scss │ │ │ │ └── settings │ │ │ │ │ ├── _asset-pipeline.scss │ │ │ │ │ ├── _prefixer.scss │ │ │ │ │ └── _px-to-em.scss │ │ │ └── neat │ │ │ │ ├── _neat-helpers.scss │ │ │ │ ├── _neat.scss │ │ │ │ ├── functions │ │ │ │ ├── _new-breakpoint.scss │ │ │ │ └── _private.scss │ │ │ │ ├── grid │ │ │ │ ├── _box-sizing.scss │ │ │ │ ├── _direction-context.scss │ │ │ │ ├── _display-context.scss │ │ │ │ ├── _fill-parent.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _omega.scss │ │ │ │ ├── _outer-container.scss │ │ │ │ ├── _pad.scss │ │ │ │ ├── _private.scss │ │ │ │ ├── _row.scss │ │ │ │ ├── _shift.scss │ │ │ │ ├── _span-columns.scss │ │ │ │ ├── _to-deprecate.scss │ │ │ │ └── _visual-grid.scss │ │ │ │ └── settings │ │ │ │ ├── _disable-warnings.scss │ │ │ │ ├── _grid.scss │ │ │ │ └── _visual-grid.scss │ │ │ └── widgets │ │ │ ├── aggregate-totals.scss │ │ │ ├── contributions-by-state.scss │ │ │ ├── house-senate-overview.scss │ │ │ ├── party-money-bars.scss │ │ │ └── pres-finance-map.scss │ ├── templates │ │ ├── 404.html │ │ ├── 500-status.html │ │ ├── 500.html │ │ ├── 503.html │ │ ├── base.html │ │ ├── code.json │ │ ├── data.json │ │ ├── home_base.html │ │ ├── long_page.html │ │ ├── partials │ │ │ ├── author-groups.html │ │ │ ├── author-list.html │ │ │ ├── body-blocks.html │ │ │ ├── breadcrumbs.html │ │ │ ├── disclaimer.html │ │ │ ├── env-banner.html │ │ │ ├── footer-navigation.html │ │ │ ├── glossary.html │ │ │ ├── google-tag-manager-noscript.html │ │ │ ├── google-tag-manager-script.html │ │ │ ├── meeting.html │ │ │ ├── meta-tags-preconnects.html │ │ │ ├── meta-tags-preloads.html │ │ │ ├── meta-tags.html │ │ │ ├── navigation │ │ │ │ ├── nav-about.html │ │ │ │ ├── nav-data.html │ │ │ │ ├── nav-help.html │ │ │ │ ├── nav-legal.html │ │ │ │ └── navigation.html │ │ │ ├── search-hero.html │ │ │ ├── update.html │ │ │ └── usa-banner.html │ │ ├── robots.txt │ │ ├── robots_prod.txt │ │ └── uaa_client │ │ │ └── login_error.html │ ├── tests │ │ ├── .eslintrc │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── context.js │ │ │ ├── election-offices.js │ │ │ └── house-results.js │ │ ├── js │ │ │ ├── analyst-lookup.js │ │ │ ├── analytics.js │ │ │ ├── babel.config.json │ │ │ ├── calc-admin-fines.js │ │ │ ├── calendar.js │ │ │ ├── checkbox-filter.js │ │ │ ├── column-helpers.js │ │ │ ├── contact-form.js │ │ │ ├── cycle-select.js │ │ │ ├── date-filter.js │ │ │ ├── download.js │ │ │ ├── draftail │ │ │ │ ├── anchor.js │ │ │ │ ├── glossary.js │ │ │ │ ├── sansserif.js │ │ │ │ └── setup.js │ │ │ ├── dropdowns.js │ │ │ ├── election-filter.js │ │ │ ├── election-search.js │ │ │ ├── election-utils.js │ │ │ ├── feedback.js │ │ │ ├── filter-base.js │ │ │ ├── filter-panel.js │ │ │ ├── filter-set.js │ │ │ ├── filter-tags.js │ │ │ ├── helpers.js │ │ │ ├── line-chart.js │ │ │ ├── listeners.js │ │ │ ├── multi-filter.js │ │ │ ├── radform-validate.js │ │ │ ├── select-filter.js │ │ │ ├── setup.js │ │ │ ├── site-nav.js │ │ │ ├── skip-nav.js │ │ │ ├── statistical-summary-archive.js │ │ │ ├── table-switcher.js │ │ │ ├── tables.js │ │ │ ├── tablist.js │ │ │ ├── text-filter.js │ │ │ ├── toc.js │ │ │ ├── toggle-filter.js │ │ │ ├── top-entities-breakdown.js │ │ │ ├── typeahead-filter.js │ │ │ └── urls.js │ │ ├── test_api_key.py │ │ ├── test_form.py │ │ ├── test_robots.py │ │ └── test_static_files.py │ ├── urls.py │ ├── utils.py │ ├── wagtail_hooks.py │ ├── wagtail_npm_dependencies │ │ ├── ace-builds │ │ └── jquery │ └── wsgi.py ├── gulpfile.js ├── home │ ├── __init__.py │ ├── blocks.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_create_homepage.py │ │ ├── 0003_auto_20150819_0342.py │ │ ├── 0004_checklistpage.py │ │ ├── 0005_auto_20150819_0517.py │ │ ├── 0006_auto_20150819_0546.py │ │ ├── 0007_auto_20150901_0442.py │ │ ├── 0008_auto_20150917_1906.py │ │ ├── 0009_contactpage.py │ │ ├── 0010_calendarpage.py │ │ ├── 0011_ssfchecklistpage.py │ │ ├── 0012_partychecklistpage.py │ │ ├── 0013_auto_20160427_2133.py │ │ ├── 0014_nonconnectedchecklistpage.py │ │ ├── 0015_custompage_content.py │ │ ├── 0016_auto_20160714_2359.py │ │ ├── 0017_auto_20160823_1504.py │ │ ├── 0018_record_digest_press_release.py │ │ ├── 0019_auto_20160907_2152.py │ │ ├── 0019_auto_20160908_2113.py │ │ ├── 0020_auto_20160909_0139.py │ │ ├── 0021_merge.py │ │ ├── 0022_auto_20160921_2230.py │ │ ├── 0022_auto_20160923_0004.py │ │ ├── 0023_remove_presslandingpage_feed_intro.py │ │ ├── 0024_presslandingpage_feed_intro.py │ │ ├── 0025_auto_20161006_1415.py │ │ ├── 0025_merge.py │ │ ├── 0026_auto_20161004_1620.py │ │ ├── 0027_auto_20161004_1620.py │ │ ├── 0028_merge.py │ │ ├── 0029_auto_20161107_0304.py │ │ ├── 0030_pressreleasepage_formatted_title.py │ │ ├── 0031_auto_20161201_2123.py │ │ ├── 0032_auto_20161201_2124.py │ │ ├── 0033_auto_20161201_2126.py │ │ ├── 0034_auto_20161221_1920.py │ │ ├── 0034_pressreleasepage_homepage_pin.py │ │ ├── 0035_pressreleasepage_homepage_hide.py │ │ ├── 0035_recordpage_monthly_issue.py │ │ ├── 0036_auto_20161216_0202.py │ │ ├── 0036_auto_20161221_2007.py │ │ ├── 0037_auto_20161216_0222.py │ │ ├── 0037_recordpage_monthly_issue_url.py │ │ ├── 0038_aboutlandingpage.py │ │ ├── 0038_merge_20161223_1820.py │ │ ├── 0038_resourcepage.py │ │ ├── 0039_aboutlandingpage_hero.py │ │ ├── 0039_legalresourceslanding.py │ │ ├── 0040_aboutlandingpage_mission_intro.py │ │ ├── 0040_auto_20161228_2356.py │ │ ├── 0041_auto_20161227_1524.py │ │ ├── 0041_enforcementpage.py │ │ ├── 0042_auto_20161227_1526.py │ │ ├── 0042_auto_20161229_2001.py │ │ ├── 0043_auto_20161227_1538.py │ │ ├── 0043_merge_20161230_0122.py │ │ ├── 0044_aboutlandingpage_option_blocks.py │ │ ├── 0044_auto_20170105_0006.py │ │ ├── 0045_merge_20170105_0036.py │ │ ├── 0046_auto_20170105_0038.py │ │ ├── 0047_auto_20170105_0044.py │ │ ├── 0048_auto_20170105_0049.py │ │ ├── 0049_auto_20170105_0052.py │ │ ├── 0050_auto_20170105_0055.py │ │ ├── 0051_commissionerpage.py │ │ ├── 0052_auto_20170111_2205.py │ │ ├── 0053_serviceslandingpage.py │ │ ├── 0054_auto_20170118_2104.py │ │ ├── 0055_auto_20170123_2232.py │ │ ├── 0055_tipsfortreasurerspage.py │ │ ├── 0056_merge_20170127_1735.py │ │ ├── 0057_auto_20170202_0237.py │ │ ├── 0058_auto_20170210_2136.py │ │ ├── 0058_documentfeedpage_documentpage.py │ │ ├── 0059_auto_20170209_0151.py │ │ ├── 0060_auto_20170209_2030.py │ │ ├── 0061_merge_20170210_2230.py │ │ ├── 0062_auto_20170214_2207.py │ │ ├── 0063_auto_20170214_2207.py │ │ ├── 0064_auto_20170215_2153.py │ │ ├── 0065_auto_20170221_0345.py │ │ ├── 0066_remove_documentpage_file_name.py │ │ ├── 0067_agendapage.py │ │ ├── 0067_documentpage_year_only.py │ │ ├── 0068_merge_20170310_0002.py │ │ ├── 0069_auto_20170316_0006.py │ │ ├── 0069_auto_20170318_0005.py │ │ ├── 0070_merge_20170322_1940.py │ │ ├── 0071_agendapage_imported_html.py │ │ ├── 0072_auto_20170324_0544.py │ │ ├── 0073_auto_20170329_2112.py │ │ ├── 0073_auto_20170330_1840.py │ │ ├── 0073_auto_20170330_1915.py │ │ ├── 0074_auto_20170330_2222.py │ │ ├── 0074_merge_20170330_2316.py │ │ ├── 0075_auto_20170330_2354.py │ │ ├── 0075_merge_20170331_0608.py │ │ ├── 0076_merge_20170331_1633.py │ │ ├── 0077_auto_20170331_1711.py │ │ ├── 0078_auto_20170404_2137.py │ │ ├── 0079_auto_20170414_0021.py │ │ ├── 0079_auto_20170420_0238.py │ │ ├── 0080_auto_20170420_1702.py │ │ ├── 0081_auto_20170501_2216.py │ │ ├── 0081_genericupdate.py │ │ ├── 0082_merge_20170504_2212.py │ │ ├── 0082_merge_20170505_0025.py │ │ ├── 0083_auto_20170504_2215.py │ │ ├── 0083_auto_20170506_0059.py │ │ ├── 0084_merge_20170509_0021.py │ │ ├── 0085_auto_20170510_1928.py │ │ ├── 0086_auto_20170519_1726.py │ │ ├── 0087_meetingpage_homepage_hide.py │ │ ├── 0088_auto_20170802_2329.py │ │ ├── 0088_folder.py │ │ ├── 0089_auto_20170810_2215.py │ │ ├── 0090_auto_20170811_1840.py │ │ ├── 0091_merge_20170811_2035.py │ │ ├── 0091_merge_20170814_0055.py │ │ ├── 0092_auto_20170814_0109.py │ │ ├── 0093_merge_20170814_2229.py │ │ ├── 0094_auto_20170829_1640.py │ │ ├── 0095_auto_20170831_2013.py │ │ ├── 0095_meetingpage_sunshine_act_doc_upld.py │ │ ├── 0096_merge_20170907_2031.py │ │ ├── 0097_auto_20170925_1952.py │ │ ├── 0097_auto_20170929_2329.py │ │ ├── 0098_auto_20170930_0054.py │ │ ├── 0099_merge_20171109_1546.py │ │ ├── 0100_auto_20180126_1444.py │ │ ├── 0101_auto_20180531_1615.py │ │ ├── 0102_auto_20180718_0132.py │ │ ├── 0103_auto_20180726_1409.py │ │ ├── 0104_auto_20181202_1431.py │ │ ├── 0105_auto_20191003_0006.py │ │ ├── 0106_auto_20191101_1759.py │ │ ├── 0107_auto_20191213_1031.py │ │ ├── 0108_fullwidthpage_citations.py │ │ ├── 0109_auto_20200219_1316.py │ │ ├── 0110_auto_20200930_2200.py │ │ ├── 0111_oiglandingpage.py │ │ ├── 0112_auto_20210112_1100.py │ │ ├── 0113_auto_20210316_1226.py │ │ ├── 0114_auto_20210430_1346.py │ │ ├── 0115_auto_20210506_2326.py │ │ ├── 0116_auto_20210818_1041.py │ │ ├── 0117_auto_20210907_1026.py │ │ ├── 0118_auto_20211007_1004.py │ │ ├── 0119_auto_20211013_1228.py │ │ ├── 0120_auto_20211201_1130.py │ │ ├── 0121_auto_20211206_1255.py │ │ ├── 0122_auto_20220302_2114.py │ │ ├── 0122_auto_20220303_1357.py │ │ ├── 0123_merge_20220308_1116.py │ │ ├── 0124_auto_20220706_0036.py │ │ ├── 0125_officepage.py │ │ ├── 0126_auto_20230123_1608.py │ │ ├── 0127_auto_20230123_1927.py │ │ ├── 0128_merge_0125_officepage_0126_auto_20230123_1927.py │ │ ├── 0129_reportingdatestable.py │ │ ├── 0130_alter_reportingdatestable_reporting_dates_table.py │ │ ├── 0131_auto_20230905_2038.py │ │ ├── 0132_auto_20231130_1233.py │ │ ├── 0133_alter_recordpagetag_tag.py │ │ ├── 0134_embedsnippet_banner_icon_alter_resourcepage_intro.py │ │ ├── 0135_alter_resourcepage_sections.py │ │ ├── 0136_alter_embedsnippet_banner_icon_and_more.py │ │ ├── 0137_commissionerpage_picture_download.py │ │ ├── 0138_alter_reportingdatestable_reporting_dates_table.py │ │ ├── 0139_commissionerpage_commissioner_bluesky_and_more.py │ │ ├── 0140_alter_embedsnippet_banner_icon_and_more.py │ │ ├── 0141_fectimelinepage.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── blocks │ │ │ ├── adr_search.html │ │ │ ├── af_search.html │ │ │ ├── audit.html │ │ │ ├── button.html │ │ │ ├── careers.html │ │ │ ├── commissioners.html │ │ │ ├── contact-info.html │ │ │ ├── custom_table.html │ │ │ ├── disabled-page-links.html │ │ │ ├── document-list.html │ │ │ ├── embed-info-message.html │ │ │ ├── embed-table.html │ │ │ ├── example-forms.html │ │ │ ├── example-image.html │ │ │ ├── example-paragraph.html │ │ │ ├── mur_search.html │ │ │ ├── page-links.html │ │ │ ├── related-media.html │ │ │ ├── reporting-dates-table-block.html │ │ │ ├── reporting-example-cards.html │ │ │ ├── section-aside.html │ │ │ ├── section-documents.html │ │ │ ├── section.html │ │ │ ├── simple-document-list.html │ │ │ └── simple-document.html │ │ ├── home │ │ │ ├── about_landing_page.html │ │ │ ├── alert_for_emergency_use_only.html │ │ │ ├── calendar.html │ │ │ ├── candidate-and-committee-services │ │ │ │ ├── guides.html │ │ │ │ └── services_landing_page.html │ │ │ ├── collection_page.html │ │ │ ├── commission_meetings.html │ │ │ ├── commissioner_page.html │ │ │ ├── commissioners.html │ │ │ ├── contact-form.html │ │ │ ├── contact_page.html │ │ │ ├── custom_page.html │ │ │ ├── document_feed_page.html │ │ │ ├── document_page.html │ │ │ ├── example_page.html │ │ │ ├── fec_timeline_page.html │ │ │ ├── feed_base.html │ │ │ ├── full_width_page.html │ │ │ ├── home_page.html │ │ │ ├── home_page_banner_announcement.html │ │ │ ├── latest_updates.html │ │ │ ├── legal │ │ │ │ └── legal_resources_landing.html │ │ │ ├── meeting_page.html │ │ │ ├── office_page.html │ │ │ ├── oig_landing_page.html │ │ │ ├── press_landing_page.html │ │ │ ├── reporting_dates_table.html │ │ │ ├── reports_landing_page.html │ │ │ ├── resource_page.html │ │ │ └── updates │ │ │ │ ├── digest_page.html │ │ │ │ ├── press_release_page.html │ │ │ │ ├── record_page.html │ │ │ │ └── tips_for_treasurers.html │ │ ├── partials │ │ │ ├── audit-search.html │ │ │ ├── commissioner.html │ │ │ ├── current-commissioners.html │ │ │ ├── document-feed.html │ │ │ ├── document.html │ │ │ ├── draft-home-page-banner-announcement.html │ │ │ ├── elections-lookup.html │ │ │ ├── home-page-banner-announcement.html │ │ │ ├── home-page-news.html │ │ │ ├── jobs.html │ │ │ ├── legal-keyword-modal.html │ │ │ ├── legal-news.html │ │ │ ├── oig-most-recent.html │ │ │ ├── press-feed.html │ │ │ ├── raising-spending.html │ │ │ ├── section-nav.html │ │ │ └── tips-for-treasurers.html │ │ └── purgecss-homepage │ │ │ ├── banners.html │ │ │ ├── commissioners.html │ │ │ ├── full.html │ │ │ ├── hero.html │ │ │ ├── navs.html │ │ │ ├── readme.txt │ │ │ └── toggled.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── audit_search.py │ │ ├── author_groups.py │ │ ├── commissioners.py │ │ ├── document_feed.py │ │ ├── elections_lookup.py │ │ ├── filters.py │ │ ├── home_page.py │ │ ├── legal_news.py │ │ ├── oig_most_recent.py │ │ ├── open_jobs.py │ │ ├── tips_for_treasurers.py │ │ ├── top_entities.py │ │ └── updates.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_filters.py │ │ ├── test_pages.py │ │ ├── test_usajobs.py │ │ └── test_views.py │ ├── utils │ │ └── link_reroute.py │ ├── views.py │ └── wagtail_hooks.py ├── legal │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── templates │ │ ├── layouts │ │ │ ├── legal-doc-landing.jinja │ │ │ └── legal-doc-search-results.jinja │ │ ├── legal-admin_fine.jinja │ │ ├── legal-adr.jinja │ │ ├── legal-advisory-opinion.jinja │ │ ├── legal-advisory-opinions-landing.jinja │ │ ├── legal-archived-mur.jinja │ │ ├── legal-current-mur.jinja │ │ ├── legal-search-results-adrs.jinja │ │ ├── legal-search-results-advisory_opinions.jinja │ │ ├── legal-search-results-afs.jinja │ │ ├── legal-search-results-murs.jinja │ │ ├── legal-search-results-regulations.jinja │ │ ├── legal-search-results-statutes.jinja │ │ ├── legal-search-results.jinja │ │ ├── legal-statutes-landing.jinja │ │ ├── macros │ │ │ └── legal.jinja │ │ └── partials │ │ │ ├── legal-disclaimer.jinja │ │ │ ├── legal-keyword-modal.jinja │ │ │ ├── legal-pagination.jinja │ │ │ ├── legal-regulations-pagination.jinja │ │ │ ├── legal-search-results-adrs.jinja │ │ │ ├── legal-search-results-advisory-opinion.jinja │ │ │ ├── legal-search-results-afs.jinja │ │ │ ├── legal-search-results-mur.jinja │ │ │ ├── legal-search-results-regulation.jinja │ │ │ └── legal-search-results-statute.jinja │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── search │ ├── __init__.py │ ├── management │ │ └── data │ │ │ ├── sitemap_html.xml │ │ │ └── sitemap_pdf.xml │ ├── templates │ │ └── search │ │ │ ├── policy_guidance_search_page.html │ │ │ └── search.html │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ └── views.py └── webpack.config.cjs ├── karma.conf.js ├── locust_helpers ├── helpers.py └── urls.py ├── locustfile.py ├── manifest_dev.yml ├── manifest_feature.yml ├── manifest_prod.yml ├── manifest_stage.yml ├── package.json ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── runtime.txt └── tasks.py /.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.cfignore -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit=*migrations* 3 | source = . 4 | -------------------------------------------------------------------------------- /.cspell/custom-dictionary-workspace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.cspell/custom-dictionary-workspace.txt -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | fec/fec/static/js/vendor/* 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.github/ISSUE_TEMPLATE/task-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | javascript: 2 | config_file: .eslintrc 3 | -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.jshintrc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.puppeteerrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.puppeteerrc.cjs -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bin/run.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/babel.config.json -------------------------------------------------------------------------------- /bin/cf_env_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/bin/cf_env_setup.sh -------------------------------------------------------------------------------- /bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/bin/run.sh -------------------------------------------------------------------------------- /code-gov-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/code-gov-config.json -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/conftest.py -------------------------------------------------------------------------------- /fec/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = true 3 | source = . 4 | -------------------------------------------------------------------------------- /fec/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/data/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/admin.py -------------------------------------------------------------------------------- /fec/data/api_caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/api_caller.py -------------------------------------------------------------------------------- /fec/data/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/apps.py -------------------------------------------------------------------------------- /fec/data/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/constants.py -------------------------------------------------------------------------------- /fec/data/ecfr_caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/ecfr_caller.py -------------------------------------------------------------------------------- /fec/data/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/jinja2.py -------------------------------------------------------------------------------- /fec/data/legal_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/legal_test_data.py -------------------------------------------------------------------------------- /fec/data/templates/browse-data.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/browse-data.jinja -------------------------------------------------------------------------------- /fec/data/templates/candidates-single.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/candidates-single.jinja -------------------------------------------------------------------------------- /fec/data/templates/committees-single.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/committees-single.jinja -------------------------------------------------------------------------------- /fec/data/templates/datatable.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/datatable.jinja -------------------------------------------------------------------------------- /fec/data/templates/election-lookup.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/election-lookup.jinja -------------------------------------------------------------------------------- /fec/data/templates/elections.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/elections.jinja -------------------------------------------------------------------------------- /fec/data/templates/house-senate-overview.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/house-senate-overview.jinja -------------------------------------------------------------------------------- /fec/data/templates/landing.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/landing.jinja -------------------------------------------------------------------------------- /fec/data/templates/layouts/main.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/layouts/main.jinja -------------------------------------------------------------------------------- /fec/data/templates/layouts/sidebar-page.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/layouts/sidebar-page.jinja -------------------------------------------------------------------------------- /fec/data/templates/layouts/widgets.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/layouts/widgets.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/breadcrumbs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/breadcrumbs.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/bythenumbers.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/bythenumbers.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/cycle-select.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/cycle-select.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/datatables.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/datatables.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/disclaimer.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/disclaimer.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/document.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/document.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/entity-pages.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/entity-pages.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/filters/date.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/filters/date.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/filters/range.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/filters/range.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/filters/states.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/filters/states.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/filters/text.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/filters/text.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/filters/years.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/filters/years.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/missing.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/missing.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/null.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/null.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/page-header.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/page-header.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/reaction-box.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/reaction-box.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/reporting-info.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/reporting-info.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/search.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/search.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/tables.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/tables.jinja -------------------------------------------------------------------------------- /fec/data/templates/macros/widgets.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/macros/widgets.jinja -------------------------------------------------------------------------------- /fec/data/templates/partials/audit-filter.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/partials/audit-filter.jinja -------------------------------------------------------------------------------- /fec/data/templates/partials/debts-filter.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/partials/debts-filter.jinja -------------------------------------------------------------------------------- /fec/data/templates/partials/filters.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/partials/filters.jinja -------------------------------------------------------------------------------- /fec/data/templates/partials/hero.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/partials/hero.jinja -------------------------------------------------------------------------------- /fec/data/templates/partials/loading-tab.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/partials/loading-tab.jinja -------------------------------------------------------------------------------- /fec/data/templates/partials/loans-filter.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/partials/loans-filter.jinja -------------------------------------------------------------------------------- /fec/data/templates/partials/meta-tags.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/partials/meta-tags.jinja -------------------------------------------------------------------------------- /fec/data/templates/partials/warnings.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/partials/warnings.jinja -------------------------------------------------------------------------------- /fec/data/templates/pres-finance-map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/pres-finance-map.jinja -------------------------------------------------------------------------------- /fec/data/templates/raising-bythenumbers.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/raising-bythenumbers.jinja -------------------------------------------------------------------------------- /fec/data/templates/search-results.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/search-results.jinja -------------------------------------------------------------------------------- /fec/data/templates/spending-bythenumbers.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templates/spending-bythenumbers.jinja -------------------------------------------------------------------------------- /fec/data/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/data/templatetags/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/templatetags/filters.py -------------------------------------------------------------------------------- /fec/data/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/data/tests/test_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/tests/test_candidate.py -------------------------------------------------------------------------------- /fec/data/tests/test_committee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/tests/test_committee.py -------------------------------------------------------------------------------- /fec/data/tests/test_datatables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/tests/test_datatables.py -------------------------------------------------------------------------------- /fec/data/tests/test_legal_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/tests/test_legal_search.py -------------------------------------------------------------------------------- /fec/data/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/tests/test_utils.py -------------------------------------------------------------------------------- /fec/data/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/urls.py -------------------------------------------------------------------------------- /fec/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/utils.py -------------------------------------------------------------------------------- /fec/data/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/views.py -------------------------------------------------------------------------------- /fec/data/views_datatables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/data/views_datatables.py -------------------------------------------------------------------------------- /fec/extend_admin/wagtailadmin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/extend_admin/wagtailadmin/base.html -------------------------------------------------------------------------------- /fec/fec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/fec/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/constants.py -------------------------------------------------------------------------------- /fec/fec/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/context.py -------------------------------------------------------------------------------- /fec/fec/draftail/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/draftail/anchor.py -------------------------------------------------------------------------------- /fec/fec/draftail/glossary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/draftail/glossary.py -------------------------------------------------------------------------------- /fec/fec/draftail/sansserif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/draftail/sansserif.py -------------------------------------------------------------------------------- /fec/fec/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/forms.py -------------------------------------------------------------------------------- /fec/fec/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/middleware.py -------------------------------------------------------------------------------- /fec/fec/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from .dev import * # noqa F401 2 | -------------------------------------------------------------------------------- /fec/fec/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/settings/base.py -------------------------------------------------------------------------------- /fec/fec/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/settings/dev.py -------------------------------------------------------------------------------- /fec/fec/settings/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/settings/env.py -------------------------------------------------------------------------------- /fec/fec/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/settings/production.py -------------------------------------------------------------------------------- /fec/fec/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/slack.py -------------------------------------------------------------------------------- /fec/fec/static/css/customize-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/css/customize-editor.css -------------------------------------------------------------------------------- /fec/fec/static/fonts/fec-currencymono-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/fec-currencymono-bold.eot -------------------------------------------------------------------------------- /fec/fec/static/fonts/fec-currencymono-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/fec-currencymono-bold.ttf -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-bold.eot -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-bold.ttf -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-bold.woff -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-bold.woff2 -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-italic.eot -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-italic.ttf -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-italic.woff -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-italic.woff2 -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-regular.eot -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-regular.ttf -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-regular.woff -------------------------------------------------------------------------------- /fec/fec/static/fonts/gandhiserif-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/gandhiserif-regular.woff2 -------------------------------------------------------------------------------- /fec/fec/static/fonts/karla-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/karla-bold.eot -------------------------------------------------------------------------------- /fec/fec/static/fonts/karla-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/karla-bold.ttf -------------------------------------------------------------------------------- /fec/fec/static/fonts/karla-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/karla-bold.woff -------------------------------------------------------------------------------- /fec/fec/static/fonts/karla-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/karla-bold.woff2 -------------------------------------------------------------------------------- /fec/fec/static/fonts/karla-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/karla-regular.eot -------------------------------------------------------------------------------- /fec/fec/static/fonts/karla-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/karla-regular.ttf -------------------------------------------------------------------------------- /fec/fec/static/fonts/karla-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/karla-regular.woff -------------------------------------------------------------------------------- /fec/fec/static/fonts/karla-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/fonts/karla-regular.woff2 -------------------------------------------------------------------------------- /fec/fec/static/icons/icon-template.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/icon-template.scss -------------------------------------------------------------------------------- /fec/fec/static/icons/input/all-files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/all-files.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/arrow-down.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/arrow-left.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/arrow-right.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/arrow-target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/arrow-target.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/arrow-up-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/arrow-up-border.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/arrow-up-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/arrow-up-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/arrow-up.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/bang-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/bang-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/bang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/bang.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/bluesky-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/bluesky-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/book.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/bulk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/bulk.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/cal-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/cal-add.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/calculator.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/calendar.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/candidate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/candidate.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/cfr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/cfr.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/check-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/check.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/checklist-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/checklist-2.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/checklist.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/clock-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/clock-reverse.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/committee-audit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/committee-audit.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/committee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/committee.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/compass.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/dash.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/data-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/data-flag.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/decree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/decree.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/direction-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/direction-sign.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/disbursement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/disbursement.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/document.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/download.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/election.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/election.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/facebook-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/facebook-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/fax.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/file-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/file-box.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/filter.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/folder.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/github-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/github-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/graph.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/grid.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/hand-envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/hand-envelope.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/hand-money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/hand-money.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/info-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/info-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/list.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/mallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/mallet.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/map-pin.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/map-us-states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/map-us-states.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/menu.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/minus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/minus-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/moving-envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/moving-envelope.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/notebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/notebook.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/org-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/org-chart.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/papers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/papers.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/person-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/person-location.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/piggy-bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/piggy-bank.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/play-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/play-button.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/plus-circle 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/plus-circle 2.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/plus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/plus-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/plus.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/pop-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/pop-up.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/question-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/question-bubble.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/question-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/question-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/scale.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/share.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/shield-scales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/shield-scales.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/shield.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/signal.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/sort-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/sort-down.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/sort-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/sort-up.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/sort.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/speaker.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/stamp-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/stamp-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/star.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/subsection-doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/subsection-doc.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/table.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/timer.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/training.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/training.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/twitter-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/twitter-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/two-candidates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/two-candidates.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/updates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/updates.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/usc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/usc.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/x-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/x.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/input/youtube-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/input/youtube-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/all-files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/all-files.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/arrow-down.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/arrow-left.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/arrow-right.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/arrow-target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/arrow-target.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/arrow-up.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/bang-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/bang-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/bang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/bang.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/bluesky-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/bluesky-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/book.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/bulk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/bulk.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/cal-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/cal-add.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/calculator.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/calendar.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/candidate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/candidate.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/cfr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/cfr.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/check-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/check.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/checklist-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/checklist-2.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/checklist.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/clock-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/clock-reverse.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/committee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/committee.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/compass.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/dash.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/data-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/data-flag.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/decree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/decree.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/direction-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/direction-sign.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/disbursement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/disbursement.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/document.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/download.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/election.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/election.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/fax.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/file-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/file-box.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/filter.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/folder.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/github-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/github-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/graph.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/grid.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/hand-envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/hand-envelope.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/hand-money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/hand-money.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/info-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/info-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/list.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/mallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/mallet.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/map-pin.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/map-us-states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/map-us-states.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/menu.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/minus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/minus-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/notebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/notebook.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/org-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/org-chart.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/papers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/papers.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/piggy-bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/piggy-bank.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/play-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/play-button.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/plus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/plus-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/plus.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/pop-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/pop-up.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/scale.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/share.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/shield-scales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/shield-scales.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/shield.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/signal.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/sort-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/sort-down.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/sort-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/sort-up.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/sort.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/speaker.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/stamp-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/stamp-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/star.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/subsection-doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/subsection-doc.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/table.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/timer.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/training.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/training.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/twitter-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/twitter-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/two-candidates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/two-candidates.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/updates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/updates.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/usc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/usc.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/x-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/x.svg -------------------------------------------------------------------------------- /fec/fec/static/icons/output/youtube-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/icons/output/youtube-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/img/TV-Gray-Wall-Only-850.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/TV-Gray-Wall-Only-850.png -------------------------------------------------------------------------------- /fec/fec/static/img/angle-arrow-up-primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/angle-arrow-up-primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/angle-arrow-up-primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/angle-arrow-up-primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/example-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/example-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /fec/fec/static/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /fec/fec/static/img/favicon/favicon-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/favicon/favicon-full.svg -------------------------------------------------------------------------------- /fec/fec/static/img/favicon/favicon-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/favicon/favicon-small.svg -------------------------------------------------------------------------------- /fec/fec/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /fec/fec/static/img/favicon/general/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/favicon/general/favicon.svg -------------------------------------------------------------------------------- /fec/fec/static/img/feature--contributions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/feature--contributions.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/feature--data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/feature--data.png -------------------------------------------------------------------------------- /fec/fec/static/img/feature--dates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/feature--dates.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/feature--filing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/feature--filing.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/feature--forms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/feature--forms.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/feature--legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/feature--legal.png -------------------------------------------------------------------------------- /fec/fec/static/img/feature--reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/feature--reporting.png -------------------------------------------------------------------------------- /fec/fec/static/img/feature--training.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/feature--training.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/fec-office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/fec-office.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/headshot--goodman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/headshot--goodman.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/headshot--hunter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/headshot--hunter.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/headshot--no-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/headshot--no-photo.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/headshot--petersen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/headshot--petersen.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/headshot--walther.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/headshot--walther.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/headshot--weintraub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/headshot--weintraub.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/hero-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/hero-about.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/hero-data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/hero-data.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/hero-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/hero-home.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/hero-legal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/hero-legal.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/hero-oig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/hero-oig.png -------------------------------------------------------------------------------- /fec/fec/static/img/hero-press.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/hero-press.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/hero-registration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/hero-registration.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/i-bluesky--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-bluesky--primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-bluesky--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-bluesky--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-calendar-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-calendar-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-complex--calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-complex--calendar.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-complex--calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-complex--calendar.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-complex--data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-complex--data.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-complex--data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-complex--data.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-complex--legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-complex--legal.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-complex--legal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-complex--legal.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-complex--regreport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-complex--regreport.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-complex--regreport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-complex--regreport.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-document-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-document-circle.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-elections--neutral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-elections--neutral.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-elections--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-elections--primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-elections--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-elections--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-email--inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-email--inverse.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-email--inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-email--inverse.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-email--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-email--primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-email--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-email--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-github--inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-github--inverse.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-github--inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-github--inverse.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-github--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-github--primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-github--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-github--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-mail--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-mail--primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-mail--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-mail--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-map--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-map--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-overviews--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-overviews--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-phone--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-phone--primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-phone--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-phone--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-table--neutral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-table--neutral.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-table--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-table--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-twitter--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-twitter--primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-twitter--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-twitter--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/i-x-twitter--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-x-twitter--primary.png -------------------------------------------------------------------------------- /fec/fec/static/img/i-x-twitter--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/i-x-twitter--primary.svg -------------------------------------------------------------------------------- /fec/fec/static/img/icon-dot-gov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/icon-dot-gov.svg -------------------------------------------------------------------------------- /fec/fec/static/img/icon-https.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/icon-https.svg -------------------------------------------------------------------------------- /fec/fec/static/img/loading--primary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/loading--primary.gif -------------------------------------------------------------------------------- /fec/fec/static/img/loading-ellipsis-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/loading-ellipsis-gray.gif -------------------------------------------------------------------------------- /fec/fec/static/img/loading-ellipsis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/loading-ellipsis.gif -------------------------------------------------------------------------------- /fec/fec/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/loading.gif -------------------------------------------------------------------------------- /fec/fec/static/img/logo-oig-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/logo-oig-color.svg -------------------------------------------------------------------------------- /fec/fec/static/img/map-chart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/map-chart-icon.svg -------------------------------------------------------------------------------- /fec/fec/static/img/new-tv-bkgd-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/new-tv-bkgd-wide.png -------------------------------------------------------------------------------- /fec/fec/static/img/print-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/print-logo.png -------------------------------------------------------------------------------- /fec/fec/static/img/reaction-confusing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/reaction-confusing.svg -------------------------------------------------------------------------------- /fec/fec/static/img/reaction-informative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/reaction-informative.svg -------------------------------------------------------------------------------- /fec/fec/static/img/reaction-not-interested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/reaction-not-interested.svg -------------------------------------------------------------------------------- /fec/fec/static/img/seal--cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/seal--cropped.png -------------------------------------------------------------------------------- /fec/fec/static/img/seal--cropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/seal--cropped.svg -------------------------------------------------------------------------------- /fec/fec/static/img/seal--inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/seal--inverse.png -------------------------------------------------------------------------------- /fec/fec/static/img/seal--inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/seal--inverse.svg -------------------------------------------------------------------------------- /fec/fec/static/img/seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/seal.png -------------------------------------------------------------------------------- /fec/fec/static/img/seal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/seal.svg -------------------------------------------------------------------------------- /fec/fec/static/img/social/fec-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/social/fec-data.png -------------------------------------------------------------------------------- /fec/fec/static/img/social/fec-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/social/fec-help.png -------------------------------------------------------------------------------- /fec/fec/static/img/social/fec-legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/social/fec-legal.png -------------------------------------------------------------------------------- /fec/fec/static/img/social/fec-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/social/fec-logo.png -------------------------------------------------------------------------------- /fec/fec/static/img/social/fec-microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/social/fec-microphone.png -------------------------------------------------------------------------------- /fec/fec/static/img/social/fec-microphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/social/fec-microphones.png -------------------------------------------------------------------------------- /fec/fec/static/img/social/fec-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/social/fec-pen.png -------------------------------------------------------------------------------- /fec/fec/static/img/social/fec-seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/social/fec-seal.png -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--ao-brochure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--ao-brochure.png -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--audio.png -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--candidates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--candidates.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--captions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--captions.png -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--feca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--feca.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--nonconnected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--nonconnected.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--orgs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--orgs.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--parties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--parties.jpg -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--pdf-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--pdf-guide.png -------------------------------------------------------------------------------- /fec/fec/static/img/thumbnail--video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/thumbnail--video.png -------------------------------------------------------------------------------- /fec/fec/static/img/tooltip-point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/tooltip-point.svg -------------------------------------------------------------------------------- /fec/fec/static/img/us_flag_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/us_flag_small.png -------------------------------------------------------------------------------- /fec/fec/static/img/wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/wordmark.png -------------------------------------------------------------------------------- /fec/fec/static/img/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/img/wordmark.svg -------------------------------------------------------------------------------- /fec/fec/static/js/data-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/data-init.js -------------------------------------------------------------------------------- /fec/fec/static/js/data/districts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/data/districts.json -------------------------------------------------------------------------------- /fec/fec/static/js/data/merge_shape_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/data/merge_shape_files.py -------------------------------------------------------------------------------- /fec/fec/static/js/data/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/data/notes.md -------------------------------------------------------------------------------- /fec/fec/static/js/data/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/data/state.json -------------------------------------------------------------------------------- /fec/fec/static/js/data/stateDistricts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/data/stateDistricts.json -------------------------------------------------------------------------------- /fec/fec/static/js/data/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/data/terms.json -------------------------------------------------------------------------------- /fec/fec/static/js/data/us-states-10m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/data/us-states-10m.json -------------------------------------------------------------------------------- /fec/fec/static/js/draftail/Anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/draftail/Anchor.js -------------------------------------------------------------------------------- /fec/fec/static/js/draftail/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/draftail/App.js -------------------------------------------------------------------------------- /fec/fec/static/js/draftail/Glossary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/draftail/Glossary.js -------------------------------------------------------------------------------- /fec/fec/static/js/draftail/SansSerif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/draftail/SansSerif.js -------------------------------------------------------------------------------- /fec/fec/static/js/draftail/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/draftail/components/Modal.js -------------------------------------------------------------------------------- /fec/fec/static/js/draftail/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/draftail/utils.js -------------------------------------------------------------------------------- /fec/fec/static/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/global.js -------------------------------------------------------------------------------- /fec/fec/static/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/init.js -------------------------------------------------------------------------------- /fec/fec/static/js/legal-search-ao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/legal-search-ao.js -------------------------------------------------------------------------------- /fec/fec/static/js/legal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/legal.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/accessibility.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/analytics.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/audit_tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/audit_tags.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/calc-admin-fines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/calc-admin-fines.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/calendar-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/calendar-helpers.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/calendar-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/calendar-tooltip.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/calendar.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/column-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/column-helpers.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/columns.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/container-queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/container-queries.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/cycle-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/cycle-select.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/data-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/data-map.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/decoders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/decoders.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/download.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/dropdowns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/dropdowns.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/election-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/election-form.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/election-lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/election-lookup.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/election-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/election-map.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/election-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/election-search.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/election-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/election-summary.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/election-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/election-utils.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/events.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/fec-timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/fec-timeline.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/feedback.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/filings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/filings.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/filters-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/filters-event.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/fips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/fips.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/form-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/form-nav.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/helpers.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/home-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/home-events.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/keyword-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/keyword-modal.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/line-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/line-chart.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/listeners.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/load-recaptcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/load-recaptcha.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/maps-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/maps-event.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/maps.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/party-money-bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/party-money-bars.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/performance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/performance.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/search.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/site-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/site-nav.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/skip-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/skip-nav.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/table-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/table-columns.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/table-panels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/table-panels.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/table-switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/table-switcher.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/tables.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/toc.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/toggle.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/top-entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/top-entities.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/top-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/top-list.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/typeahead.js -------------------------------------------------------------------------------- /fec/fec/static/js/modules/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/modules/urls.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/bythenumbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/bythenumbers.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/calendar-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/calendar-page.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/candidate-single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/candidate-single.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/committee-single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/committee-single.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/contact-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/contact-form.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/data-browse-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/data-browse-data.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/data-landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/data-landing.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/datatable-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/datatable-audit.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/datatable-debts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/datatable-debts.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/datatable-filings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/datatable-filings.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/datatable-loans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/datatable-loans.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/datatable-pac-party.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/datatable-pac-party.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/datatable-receipts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/datatable-receipts.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/datatable-reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/datatable-reports.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/election-lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/election-lookup.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/elections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/elections.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/home.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/legal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/legal.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/reaction-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/reaction-box.js -------------------------------------------------------------------------------- /fec/fec/static/js/pages/statistical-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/pages/statistical-summary.js -------------------------------------------------------------------------------- /fec/fec/static/js/templates/audit_tags.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/audit_tags.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/candidates.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/candidates.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/committees.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/committees.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/comparison.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/comparison.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/debts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/debts.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/disbursements.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/disbursements.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/districts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/districts.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/download/item.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/download/item.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/electionCycle.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/electionCycle.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/electionCycles.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/electionCycles.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/electionResult.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/electionResult.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/feedback.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/feedback.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/loans.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/loans.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/pac-party.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/pac-party.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/receipts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/receipts.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/reports/pac.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/reports/pac.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/tables/noData.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/tables/noData.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/tables/title.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/tables/title.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/templates/top-entity-row.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/templates/top-entity-row.hbs -------------------------------------------------------------------------------- /fec/fec/static/js/vendor/beautify-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/vendor/beautify-html.js -------------------------------------------------------------------------------- /fec/fec/static/js/vendor/tablist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/vendor/tablist.js -------------------------------------------------------------------------------- /fec/fec/static/js/widgets/aggregate-totals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/widgets/aggregate-totals.js -------------------------------------------------------------------------------- /fec/fec/static/js/widgets/widget-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/js/widgets/widget-vars.js -------------------------------------------------------------------------------- /fec/fec/static/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/_fonts.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/_functions.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/_global-common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/_global-common.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/_global.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/_grid.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/_icon-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/_icon-variables.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/_variables.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/base.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/calendar.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/common.scss: -------------------------------------------------------------------------------- 1 | @import 'global-common'; 2 | -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_agendas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_agendas.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_articles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_articles.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_buttons.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_calendar.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_callouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_callouts.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_cards.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_charts.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_date-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_date-grid.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_documents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_documents.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_downloads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_downloads.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_dropdowns.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_examples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_examples.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_feedback.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_feedback.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_figures.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_figures.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_filters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_filters.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_footer.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_glossary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_glossary.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_headings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_headings.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_hero.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_icons.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_maps.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_mega-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_mega-menu.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_messages.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_modals.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_nav.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_options.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_options.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_overlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_overlay.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_overviews.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_overviews.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_posts.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_richtext.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_richtext.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_side-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_side-nav.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_sidebar.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_tags.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_toggles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_toggles.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/components/_tooltips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/components/_tooltips.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/data-landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/data-landing.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/datatables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/datatables.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/elections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/elections.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/elements/_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/elements/_elements.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/elements/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/elements/_forms.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/elements/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/elements/_images.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/elements/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/elements/_links.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/elements/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/elements/_lists.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/elements/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/elements/_tables.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/elements/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/elements/_typography.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/entity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/entity.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/fec-timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/fec-timeline.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/home.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/layout/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/layout/_grid.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/layout/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/layout/_layout.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/layout/_slabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/layout/_slabs.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/legal-common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/legal-common.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/legal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/legal.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/mixins/_icon-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/mixins/_icon-mixins.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/mixins/_type-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/mixins/_type-mixins.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/mixins/_utilities.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/vendor/bourbon/settings/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | $em-base: 16px !default; 2 | -------------------------------------------------------------------------------- /fec/fec/static/scss/vendor/neat/_neat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/vendor/neat/_neat.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/vendor/neat/grid/_pad.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/vendor/neat/grid/_pad.scss -------------------------------------------------------------------------------- /fec/fec/static/scss/vendor/neat/grid/_row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/static/scss/vendor/neat/grid/_row.scss -------------------------------------------------------------------------------- /fec/fec/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/404.html -------------------------------------------------------------------------------- /fec/fec/templates/500-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/500-status.html -------------------------------------------------------------------------------- /fec/fec/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/500.html -------------------------------------------------------------------------------- /fec/fec/templates/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/503.html -------------------------------------------------------------------------------- /fec/fec/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/base.html -------------------------------------------------------------------------------- /fec/fec/templates/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/code.json -------------------------------------------------------------------------------- /fec/fec/templates/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/data.json -------------------------------------------------------------------------------- /fec/fec/templates/home_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/home_base.html -------------------------------------------------------------------------------- /fec/fec/templates/long_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/long_page.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/author-groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/author-groups.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/author-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/author-list.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/body-blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/body-blocks.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/breadcrumbs.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/disclaimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/disclaimer.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/env-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/env-banner.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/glossary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/glossary.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/meeting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/meeting.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/meta-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/meta-tags.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/search-hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/search-hero.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/update.html -------------------------------------------------------------------------------- /fec/fec/templates/partials/usa-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/partials/usa-banner.html -------------------------------------------------------------------------------- /fec/fec/templates/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /fec/fec/templates/robots_prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/robots_prod.txt -------------------------------------------------------------------------------- /fec/fec/templates/uaa_client/login_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/templates/uaa_client/login_error.html -------------------------------------------------------------------------------- /fec/fec/tests/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/.eslintrc -------------------------------------------------------------------------------- /fec/fec/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/fec/tests/fixtures/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/fixtures/context.js -------------------------------------------------------------------------------- /fec/fec/tests/fixtures/election-offices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/fixtures/election-offices.js -------------------------------------------------------------------------------- /fec/fec/tests/fixtures/house-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/fixtures/house-results.js -------------------------------------------------------------------------------- /fec/fec/tests/js/analyst-lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/analyst-lookup.js -------------------------------------------------------------------------------- /fec/fec/tests/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/analytics.js -------------------------------------------------------------------------------- /fec/fec/tests/js/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/babel.config.json -------------------------------------------------------------------------------- /fec/fec/tests/js/calc-admin-fines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/calc-admin-fines.js -------------------------------------------------------------------------------- /fec/fec/tests/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/calendar.js -------------------------------------------------------------------------------- /fec/fec/tests/js/checkbox-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/checkbox-filter.js -------------------------------------------------------------------------------- /fec/fec/tests/js/column-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/column-helpers.js -------------------------------------------------------------------------------- /fec/fec/tests/js/contact-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/contact-form.js -------------------------------------------------------------------------------- /fec/fec/tests/js/cycle-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/cycle-select.js -------------------------------------------------------------------------------- /fec/fec/tests/js/date-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/date-filter.js -------------------------------------------------------------------------------- /fec/fec/tests/js/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/download.js -------------------------------------------------------------------------------- /fec/fec/tests/js/draftail/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/draftail/anchor.js -------------------------------------------------------------------------------- /fec/fec/tests/js/draftail/glossary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/draftail/glossary.js -------------------------------------------------------------------------------- /fec/fec/tests/js/draftail/sansserif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/draftail/sansserif.js -------------------------------------------------------------------------------- /fec/fec/tests/js/draftail/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/draftail/setup.js -------------------------------------------------------------------------------- /fec/fec/tests/js/dropdowns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/dropdowns.js -------------------------------------------------------------------------------- /fec/fec/tests/js/election-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/election-filter.js -------------------------------------------------------------------------------- /fec/fec/tests/js/election-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/election-search.js -------------------------------------------------------------------------------- /fec/fec/tests/js/election-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/election-utils.js -------------------------------------------------------------------------------- /fec/fec/tests/js/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/feedback.js -------------------------------------------------------------------------------- /fec/fec/tests/js/filter-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/filter-base.js -------------------------------------------------------------------------------- /fec/fec/tests/js/filter-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/filter-panel.js -------------------------------------------------------------------------------- /fec/fec/tests/js/filter-set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/filter-set.js -------------------------------------------------------------------------------- /fec/fec/tests/js/filter-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/filter-tags.js -------------------------------------------------------------------------------- /fec/fec/tests/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/helpers.js -------------------------------------------------------------------------------- /fec/fec/tests/js/line-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/line-chart.js -------------------------------------------------------------------------------- /fec/fec/tests/js/listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/listeners.js -------------------------------------------------------------------------------- /fec/fec/tests/js/multi-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/multi-filter.js -------------------------------------------------------------------------------- /fec/fec/tests/js/radform-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/radform-validate.js -------------------------------------------------------------------------------- /fec/fec/tests/js/select-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/select-filter.js -------------------------------------------------------------------------------- /fec/fec/tests/js/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/setup.js -------------------------------------------------------------------------------- /fec/fec/tests/js/site-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/site-nav.js -------------------------------------------------------------------------------- /fec/fec/tests/js/skip-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/skip-nav.js -------------------------------------------------------------------------------- /fec/fec/tests/js/table-switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/table-switcher.js -------------------------------------------------------------------------------- /fec/fec/tests/js/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/tables.js -------------------------------------------------------------------------------- /fec/fec/tests/js/tablist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/tablist.js -------------------------------------------------------------------------------- /fec/fec/tests/js/text-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/text-filter.js -------------------------------------------------------------------------------- /fec/fec/tests/js/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/toc.js -------------------------------------------------------------------------------- /fec/fec/tests/js/toggle-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/toggle-filter.js -------------------------------------------------------------------------------- /fec/fec/tests/js/top-entities-breakdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/top-entities-breakdown.js -------------------------------------------------------------------------------- /fec/fec/tests/js/typeahead-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/typeahead-filter.js -------------------------------------------------------------------------------- /fec/fec/tests/js/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/js/urls.js -------------------------------------------------------------------------------- /fec/fec/tests/test_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/test_api_key.py -------------------------------------------------------------------------------- /fec/fec/tests/test_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/test_form.py -------------------------------------------------------------------------------- /fec/fec/tests/test_robots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/test_robots.py -------------------------------------------------------------------------------- /fec/fec/tests/test_static_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/tests/test_static_files.py -------------------------------------------------------------------------------- /fec/fec/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/urls.py -------------------------------------------------------------------------------- /fec/fec/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/utils.py -------------------------------------------------------------------------------- /fec/fec/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/wagtail_hooks.py -------------------------------------------------------------------------------- /fec/fec/wagtail_npm_dependencies/ace-builds: -------------------------------------------------------------------------------- 1 | ../../../node_modules/ace-builds/ -------------------------------------------------------------------------------- /fec/fec/wagtail_npm_dependencies/jquery: -------------------------------------------------------------------------------- 1 | ../../../node_modules/jquery -------------------------------------------------------------------------------- /fec/fec/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/fec/wsgi.py -------------------------------------------------------------------------------- /fec/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/gulpfile.js -------------------------------------------------------------------------------- /fec/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/home/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/blocks.py -------------------------------------------------------------------------------- /fec/home/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0001_initial.py -------------------------------------------------------------------------------- /fec/home/migrations/0002_create_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0002_create_homepage.py -------------------------------------------------------------------------------- /fec/home/migrations/0003_auto_20150819_0342.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0003_auto_20150819_0342.py -------------------------------------------------------------------------------- /fec/home/migrations/0004_checklistpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0004_checklistpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0005_auto_20150819_0517.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0005_auto_20150819_0517.py -------------------------------------------------------------------------------- /fec/home/migrations/0006_auto_20150819_0546.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0006_auto_20150819_0546.py -------------------------------------------------------------------------------- /fec/home/migrations/0007_auto_20150901_0442.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0007_auto_20150901_0442.py -------------------------------------------------------------------------------- /fec/home/migrations/0008_auto_20150917_1906.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0008_auto_20150917_1906.py -------------------------------------------------------------------------------- /fec/home/migrations/0009_contactpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0009_contactpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0010_calendarpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0010_calendarpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0011_ssfchecklistpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0011_ssfchecklistpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0012_partychecklistpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0012_partychecklistpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0013_auto_20160427_2133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0013_auto_20160427_2133.py -------------------------------------------------------------------------------- /fec/home/migrations/0015_custompage_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0015_custompage_content.py -------------------------------------------------------------------------------- /fec/home/migrations/0016_auto_20160714_2359.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0016_auto_20160714_2359.py -------------------------------------------------------------------------------- /fec/home/migrations/0017_auto_20160823_1504.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0017_auto_20160823_1504.py -------------------------------------------------------------------------------- /fec/home/migrations/0019_auto_20160907_2152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0019_auto_20160907_2152.py -------------------------------------------------------------------------------- /fec/home/migrations/0019_auto_20160908_2113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0019_auto_20160908_2113.py -------------------------------------------------------------------------------- /fec/home/migrations/0020_auto_20160909_0139.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0020_auto_20160909_0139.py -------------------------------------------------------------------------------- /fec/home/migrations/0021_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0021_merge.py -------------------------------------------------------------------------------- /fec/home/migrations/0022_auto_20160921_2230.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0022_auto_20160921_2230.py -------------------------------------------------------------------------------- /fec/home/migrations/0022_auto_20160923_0004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0022_auto_20160923_0004.py -------------------------------------------------------------------------------- /fec/home/migrations/0025_auto_20161006_1415.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0025_auto_20161006_1415.py -------------------------------------------------------------------------------- /fec/home/migrations/0025_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0025_merge.py -------------------------------------------------------------------------------- /fec/home/migrations/0026_auto_20161004_1620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0026_auto_20161004_1620.py -------------------------------------------------------------------------------- /fec/home/migrations/0027_auto_20161004_1620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0027_auto_20161004_1620.py -------------------------------------------------------------------------------- /fec/home/migrations/0028_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0028_merge.py -------------------------------------------------------------------------------- /fec/home/migrations/0029_auto_20161107_0304.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0029_auto_20161107_0304.py -------------------------------------------------------------------------------- /fec/home/migrations/0031_auto_20161201_2123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0031_auto_20161201_2123.py -------------------------------------------------------------------------------- /fec/home/migrations/0032_auto_20161201_2124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0032_auto_20161201_2124.py -------------------------------------------------------------------------------- /fec/home/migrations/0033_auto_20161201_2126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0033_auto_20161201_2126.py -------------------------------------------------------------------------------- /fec/home/migrations/0034_auto_20161221_1920.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0034_auto_20161221_1920.py -------------------------------------------------------------------------------- /fec/home/migrations/0036_auto_20161216_0202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0036_auto_20161216_0202.py -------------------------------------------------------------------------------- /fec/home/migrations/0036_auto_20161221_2007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0036_auto_20161221_2007.py -------------------------------------------------------------------------------- /fec/home/migrations/0037_auto_20161216_0222.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0037_auto_20161216_0222.py -------------------------------------------------------------------------------- /fec/home/migrations/0038_aboutlandingpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0038_aboutlandingpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0038_resourcepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0038_resourcepage.py -------------------------------------------------------------------------------- /fec/home/migrations/0040_auto_20161228_2356.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0040_auto_20161228_2356.py -------------------------------------------------------------------------------- /fec/home/migrations/0041_auto_20161227_1524.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0041_auto_20161227_1524.py -------------------------------------------------------------------------------- /fec/home/migrations/0041_enforcementpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0041_enforcementpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0042_auto_20161227_1526.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0042_auto_20161227_1526.py -------------------------------------------------------------------------------- /fec/home/migrations/0042_auto_20161229_2001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0042_auto_20161229_2001.py -------------------------------------------------------------------------------- /fec/home/migrations/0043_auto_20161227_1538.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0043_auto_20161227_1538.py -------------------------------------------------------------------------------- /fec/home/migrations/0044_auto_20170105_0006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0044_auto_20170105_0006.py -------------------------------------------------------------------------------- /fec/home/migrations/0046_auto_20170105_0038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0046_auto_20170105_0038.py -------------------------------------------------------------------------------- /fec/home/migrations/0047_auto_20170105_0044.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0047_auto_20170105_0044.py -------------------------------------------------------------------------------- /fec/home/migrations/0048_auto_20170105_0049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0048_auto_20170105_0049.py -------------------------------------------------------------------------------- /fec/home/migrations/0049_auto_20170105_0052.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0049_auto_20170105_0052.py -------------------------------------------------------------------------------- /fec/home/migrations/0050_auto_20170105_0055.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0050_auto_20170105_0055.py -------------------------------------------------------------------------------- /fec/home/migrations/0051_commissionerpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0051_commissionerpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0052_auto_20170111_2205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0052_auto_20170111_2205.py -------------------------------------------------------------------------------- /fec/home/migrations/0054_auto_20170118_2104.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0054_auto_20170118_2104.py -------------------------------------------------------------------------------- /fec/home/migrations/0055_auto_20170123_2232.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0055_auto_20170123_2232.py -------------------------------------------------------------------------------- /fec/home/migrations/0057_auto_20170202_0237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0057_auto_20170202_0237.py -------------------------------------------------------------------------------- /fec/home/migrations/0058_auto_20170210_2136.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0058_auto_20170210_2136.py -------------------------------------------------------------------------------- /fec/home/migrations/0059_auto_20170209_0151.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0059_auto_20170209_0151.py -------------------------------------------------------------------------------- /fec/home/migrations/0060_auto_20170209_2030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0060_auto_20170209_2030.py -------------------------------------------------------------------------------- /fec/home/migrations/0062_auto_20170214_2207.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0062_auto_20170214_2207.py -------------------------------------------------------------------------------- /fec/home/migrations/0063_auto_20170214_2207.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0063_auto_20170214_2207.py -------------------------------------------------------------------------------- /fec/home/migrations/0064_auto_20170215_2153.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0064_auto_20170215_2153.py -------------------------------------------------------------------------------- /fec/home/migrations/0065_auto_20170221_0345.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0065_auto_20170221_0345.py -------------------------------------------------------------------------------- /fec/home/migrations/0067_agendapage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0067_agendapage.py -------------------------------------------------------------------------------- /fec/home/migrations/0069_auto_20170316_0006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0069_auto_20170316_0006.py -------------------------------------------------------------------------------- /fec/home/migrations/0069_auto_20170318_0005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0069_auto_20170318_0005.py -------------------------------------------------------------------------------- /fec/home/migrations/0072_auto_20170324_0544.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0072_auto_20170324_0544.py -------------------------------------------------------------------------------- /fec/home/migrations/0073_auto_20170329_2112.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0073_auto_20170329_2112.py -------------------------------------------------------------------------------- /fec/home/migrations/0073_auto_20170330_1840.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0073_auto_20170330_1840.py -------------------------------------------------------------------------------- /fec/home/migrations/0073_auto_20170330_1915.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0073_auto_20170330_1915.py -------------------------------------------------------------------------------- /fec/home/migrations/0074_auto_20170330_2222.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0074_auto_20170330_2222.py -------------------------------------------------------------------------------- /fec/home/migrations/0075_auto_20170330_2354.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0075_auto_20170330_2354.py -------------------------------------------------------------------------------- /fec/home/migrations/0077_auto_20170331_1711.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0077_auto_20170331_1711.py -------------------------------------------------------------------------------- /fec/home/migrations/0078_auto_20170404_2137.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0078_auto_20170404_2137.py -------------------------------------------------------------------------------- /fec/home/migrations/0079_auto_20170414_0021.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0079_auto_20170414_0021.py -------------------------------------------------------------------------------- /fec/home/migrations/0081_genericupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0081_genericupdate.py -------------------------------------------------------------------------------- /fec/home/migrations/0088_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0088_folder.py -------------------------------------------------------------------------------- /fec/home/migrations/0111_oiglandingpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0111_oiglandingpage.py -------------------------------------------------------------------------------- /fec/home/migrations/0125_officepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0125_officepage.py -------------------------------------------------------------------------------- /fec/home/migrations/0141_fectimelinepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/migrations/0141_fectimelinepage.py -------------------------------------------------------------------------------- /fec/home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/models.py -------------------------------------------------------------------------------- /fec/home/templates/blocks/adr_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/adr_search.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/af_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/af_search.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/audit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/audit.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/button.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/careers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/careers.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/commissioners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/commissioners.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/contact-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/contact-info.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/custom_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/custom_table.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/document-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/document-list.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/embed-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/embed-table.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/example-forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/example-forms.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/example-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/example-image.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/mur_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/mur_search.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/page-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/page-links.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/related-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/related-media.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/section-aside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/section-aside.html -------------------------------------------------------------------------------- /fec/home/templates/blocks/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/blocks/section.html -------------------------------------------------------------------------------- /fec/home/templates/home/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/calendar.html -------------------------------------------------------------------------------- /fec/home/templates/home/collection_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/collection_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/commissioners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/commissioners.html -------------------------------------------------------------------------------- /fec/home/templates/home/contact-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/contact-form.html -------------------------------------------------------------------------------- /fec/home/templates/home/contact_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/contact_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/custom_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/custom_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/document_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/document_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/example_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/example_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/feed_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/feed_base.html -------------------------------------------------------------------------------- /fec/home/templates/home/full_width_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/full_width_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/home_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/home_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/latest_updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/latest_updates.html -------------------------------------------------------------------------------- /fec/home/templates/home/meeting_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/meeting_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/office_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/office_page.html -------------------------------------------------------------------------------- /fec/home/templates/home/resource_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/home/resource_page.html -------------------------------------------------------------------------------- /fec/home/templates/partials/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/partials/document.html -------------------------------------------------------------------------------- /fec/home/templates/partials/jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/partials/jobs.html -------------------------------------------------------------------------------- /fec/home/templates/partials/legal-news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/partials/legal-news.html -------------------------------------------------------------------------------- /fec/home/templates/partials/press-feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/partials/press-feed.html -------------------------------------------------------------------------------- /fec/home/templates/partials/section-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templates/partials/section-nav.html -------------------------------------------------------------------------------- /fec/home/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/home/templatetags/audit_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/audit_search.py -------------------------------------------------------------------------------- /fec/home/templatetags/author_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/author_groups.py -------------------------------------------------------------------------------- /fec/home/templatetags/commissioners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/commissioners.py -------------------------------------------------------------------------------- /fec/home/templatetags/document_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/document_feed.py -------------------------------------------------------------------------------- /fec/home/templatetags/elections_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/elections_lookup.py -------------------------------------------------------------------------------- /fec/home/templatetags/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/filters.py -------------------------------------------------------------------------------- /fec/home/templatetags/home_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/home_page.py -------------------------------------------------------------------------------- /fec/home/templatetags/legal_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/legal_news.py -------------------------------------------------------------------------------- /fec/home/templatetags/oig_most_recent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/oig_most_recent.py -------------------------------------------------------------------------------- /fec/home/templatetags/open_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/open_jobs.py -------------------------------------------------------------------------------- /fec/home/templatetags/tips_for_treasurers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/tips_for_treasurers.py -------------------------------------------------------------------------------- /fec/home/templatetags/top_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/top_entities.py -------------------------------------------------------------------------------- /fec/home/templatetags/updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/templatetags/updates.py -------------------------------------------------------------------------------- /fec/home/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/home/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/tests/test_filters.py -------------------------------------------------------------------------------- /fec/home/tests/test_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/tests/test_pages.py -------------------------------------------------------------------------------- /fec/home/tests/test_usajobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/tests/test_usajobs.py -------------------------------------------------------------------------------- /fec/home/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/tests/test_views.py -------------------------------------------------------------------------------- /fec/home/utils/link_reroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/utils/link_reroute.py -------------------------------------------------------------------------------- /fec/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/views.py -------------------------------------------------------------------------------- /fec/home/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/home/wagtail_hooks.py -------------------------------------------------------------------------------- /fec/legal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/legal/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/admin.py -------------------------------------------------------------------------------- /fec/legal/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/apps.py -------------------------------------------------------------------------------- /fec/legal/templates/legal-admin_fine.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/templates/legal-admin_fine.jinja -------------------------------------------------------------------------------- /fec/legal/templates/legal-adr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/templates/legal-adr.jinja -------------------------------------------------------------------------------- /fec/legal/templates/legal-archived-mur.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/templates/legal-archived-mur.jinja -------------------------------------------------------------------------------- /fec/legal/templates/legal-current-mur.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/templates/legal-current-mur.jinja -------------------------------------------------------------------------------- /fec/legal/templates/macros/legal.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/templates/macros/legal.jinja -------------------------------------------------------------------------------- /fec/legal/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/tests.py -------------------------------------------------------------------------------- /fec/legal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/urls.py -------------------------------------------------------------------------------- /fec/legal/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/legal/views.py -------------------------------------------------------------------------------- /fec/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/manage.py -------------------------------------------------------------------------------- /fec/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/search/management/data/sitemap_html.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/search/management/data/sitemap_html.xml -------------------------------------------------------------------------------- /fec/search/management/data/sitemap_pdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/search/management/data/sitemap_pdf.xml -------------------------------------------------------------------------------- /fec/search/templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/search/templates/search/search.html -------------------------------------------------------------------------------- /fec/search/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fec/search/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/search/tests/test_views.py -------------------------------------------------------------------------------- /fec/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/search/views.py -------------------------------------------------------------------------------- /fec/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/fec/webpack.config.cjs -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/karma.conf.js -------------------------------------------------------------------------------- /locust_helpers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/locust_helpers/helpers.py -------------------------------------------------------------------------------- /locust_helpers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/locust_helpers/urls.py -------------------------------------------------------------------------------- /locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/locustfile.py -------------------------------------------------------------------------------- /manifest_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/manifest_dev.yml -------------------------------------------------------------------------------- /manifest_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/manifest_feature.yml -------------------------------------------------------------------------------- /manifest_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/manifest_prod.yml -------------------------------------------------------------------------------- /manifest_stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/manifest_stage.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/package.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | locust==2.29.1 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.11.x 2 | -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/fec-cms/HEAD/tasks.py --------------------------------------------------------------------------------