-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ans_oah_tests
- Loading branch information
Showing
1,483 changed files
with
33,876 additions
and
38,647 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
.github/workflows/docker.yml → .github/workflows/k8s/docker.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.github/workflows/helm_lint.yml → .github/workflows/k8s/helm_lint.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: helmlint | ||
|
||
on: pull_request | ||
# Disabled until needed | ||
# on: pull_request | ||
|
||
jobs: | ||
lint-test: | ||
|
13 changes: 6 additions & 7 deletions
13
.github/workflows/publish_cfgov.yml → .github/workflows/k8s/publish_cfgov.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Exclude SonarCloud scans of django auto-generated migration files. | ||
sonar.exclusions = cfgov/**/migrations/*.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{% extends "agreements/base_agreements.html" %} | ||
|
||
{% block title -%} | ||
Credit card agreement database archive | Consumer Financial Protection Bureau | ||
{%- endblock %} | ||
|
||
{% block content %} | ||
<main class="content content__2-1 content__bleedbar"> | ||
<div class="content_wrapper"> | ||
{% set breadcrumb_items = [ | ||
({'href':'/','title':'Home'}), | ||
({'href':'/data-research/credit-card-data/','title':'Credit cards'}), | ||
({'href':'/credit-cards/agreements/','title':'Credit card agreement database'}), | ||
] %} | ||
|
||
{%- import 'v1/includes/molecules/breadcrumbs.html' as breadcrumbs with context -%} | ||
{{ breadcrumbs.render(breadcrumb_items) }} | ||
</div> | ||
<div class="content_wrapper"> | ||
<div class="content_main"> | ||
<div class="block block__flush-top"> | ||
<h1>Credit card agreement archive</h1> | ||
{% if agreements | length == 0 %} | ||
We encountered an error fetching the credit card agreement archive. Please try again. | ||
{% endif %} | ||
<ul class="m-list m-list__links u-mt15 cc-links"> | ||
{% for agreement in agreements %} | ||
{% set year = agreement[-11:-7] %} | ||
{% set quarter = agreement[-6:-4] %} | ||
{% set name = quarter + "-" + year %} | ||
<li class="m-list m-list__links"> | ||
<a href="https://files.consumerfinance.gov/{{agreement}}"> | ||
{% if loop.index == 1 %} | ||
<span style="font-size: 22px; line-height:3">Download all most recent agreements ({{name}})</span> | ||
{% else %} | ||
Archived {{name}} agreements | ||
{% endif %} | ||
</a> | ||
{% if name in flexibilities %} | ||
<br/> | ||
<span style="font-size:14px"> | ||
Agreements may include omissions due to the Bureau’s COVID-19 | ||
<a href=" https://files.consumerfinance.gov/f/documents/cfpb_data-collection-statement_covid-19_2020-03.pdf"> | ||
regulatory flexibility statement | ||
</a> | ||
</span> | ||
{% endif %} | ||
{% if notes[name] %} | ||
<br/> | ||
<span style="font-size:14px"> | ||
{{notes[name]}} | ||
</span> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<aside class="content_sidebar o-sidebar-content"> | ||
<div class="block block__flush-top"> | ||
{% include '_need_help.html' %} | ||
</div> | ||
</aside> | ||
</div> | ||
</main> | ||
{% endblock %} |
Oops, something went wrong.