-
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.
fix(unverified): create separate base for unverified agency cards, fi…
…x copy for unverified login/nonlogin
- Loading branch information
1 parent
2ef3421
commit 635c638
Showing
5 changed files
with
39 additions
and
7 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
benefits/eligibility/templates/eligibility/unverified--cst-agency-card.html
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
2 changes: 1 addition & 1 deletion
2
benefits/eligibility/templates/eligibility/unverified--mst-agency-card.html
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
2 changes: 1 addition & 1 deletion
2
benefits/eligibility/templates/eligibility/unverified--sbmtd-agency-card.html
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
33 changes: 33 additions & 0 deletions
33
benefits/eligibility/templates/eligibility/unverified-error-agency-base.html
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,33 @@ | ||
{% extends "error-base.html" %} | ||
{% load i18n %} | ||
|
||
{% block page-title %} | ||
{% translate "Unable to confirm eligibility" %} | ||
{% endblock page-title %} | ||
|
||
{% block nav-buttons %} | ||
{% if authentication and authentication.sign_out_link_template %} | ||
{% include authentication.sign_out_link_template %} | ||
{% endif %} | ||
{% endblock nav-buttons %} | ||
|
||
{% block icon %} | ||
{% include "core/includes/icon.html" with name="idcardquestion" %} | ||
{% endblock icon %} | ||
|
||
{% block headline-text %} | ||
{% translate "Your card information may not have been entered correctly." %} | ||
{% endblock headline-text %} | ||
|
||
{% block paragraphs %} | ||
<p> | ||
{% block unverified-body %} | ||
{% endblock unverified-body %} | ||
</p> | ||
{% include "core/includes/agency-links.html" %} | ||
{% endblock paragraphs %} | ||
|
||
{% block call-to-action-button %} | ||
{% translate "Try again" as button_text %} | ||
{% include "core/includes/button--index.html" %} | ||
{% endblock call-to-action-button %} |
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