-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
166 additions
and
54 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
22 changes: 22 additions & 0 deletions
22
benefits/core/migrations/0005_move_help_template_to_eligibilityverifier.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Generated by Django 5.0.3 on 2024-03-21 00:31 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("core", "0004_alter_eligibilityverifier_display_order"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="transitagency", | ||
name="help_template", | ||
), | ||
migrations.AddField( | ||
model_name="eligibilityverifier", | ||
name="help_template", | ||
field=models.TextField(null=True), | ||
), | ||
] |
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,41 @@ | ||
{% load i18n %} | ||
|
||
<h2 class="h2-sm pt-4 pt-lg-8" id="calfresh-transit-benefit"> | ||
{% translate "How do I know if I'm eligible for the transit benefit for CalFresh Cardholders?" %} | ||
</h2> | ||
<p class="pt-2 pt-lg-4"> | ||
{% blocktranslate trimmed %} | ||
We verify your eligibility as a CalFresh Cardholder by confirming you have received funds in your | ||
CalFresh account at any point in the last three months. This means you are eligible for a transit | ||
benefit even if you did not receive funds in your CalFresh account this month or last month. | ||
{% endblocktranslate %} | ||
</p> | ||
|
||
<h2 class="h2-sm pt-4 pt-lg-8" id="calfresh-transit-benefit-no-account-changes"> | ||
{% translate "Will this transit benefit change my CalFresh account?" %} | ||
</h2> | ||
<p class="pt-2 pt-lg-4"> | ||
{% blocktranslate trimmed %} | ||
No. Your monthly CalFresh allotment will not change. | ||
{% endblocktranslate %} | ||
</p> | ||
|
||
<h2 class="h2-sm pt-4 pt-lg-8" id="calfresh-transit-benefit-enrollment"> | ||
{% translate "Do I need my Golden State Advantage card to enroll?" %} | ||
</h2> | ||
<p class="pt-2 pt-lg-4"> | ||
{% blocktranslate trimmed %} | ||
No, you do not need your physical EBT card to enroll. We use information from Login.gov and the California | ||
Department of Social Services to enroll you in the benefit. | ||
{% endblocktranslate %} | ||
</p> | ||
|
||
<h2 class="h2-sm pt-4 pt-lg-8" id="calfresh-transit-benefit-payment"> | ||
{% translate "Can I use my Golden State Advantage card to pay for transit rides?" %} | ||
</h2> | ||
<p class="pt-2 pt-lg-4"> | ||
{% blocktranslate trimmed %} | ||
No. You can not use your EBT or P-EBT card to pay for public transportation. When you tap to ride, use your personal | ||
contactless debit or credit card to pay for public transportation. | ||
{% endblocktranslate %} | ||
</p> |
File renamed without changes.
File renamed without changes.
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,9 @@ | ||
from benefits.core.context_processors import unique_values | ||
|
||
|
||
def test_unique_values(): | ||
original_list = ["a", "b", "c", "a", "a", "zzz", "b", "c", "d", "b"] | ||
|
||
new_list = unique_values(original_list) | ||
|
||
assert new_list == ["a", "b", "c", "zzz", "d"] |
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