Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: CalFresh help info #1970

Merged
merged 9 commits into from
Mar 22, 2024
2 changes: 1 addition & 1 deletion benefits/core/context_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def _agency_context(agency):
return {
"eligibility_index_url": agency.eligibility_index_url,
"help_templates": unique_values(
[v.help_template for v in agency.eligibility_verifiers.all() if v.help_template is not None]
[v.help_template for v in agency.eligibility_verifiers.filter(active=True) if v.help_template is not None]
thekaveman marked this conversation as resolved.
Show resolved Hide resolved
),
"info_url": agency.info_url,
"long_name": agency.long_name,
Expand Down