-
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
7 changed files
with
54 additions
and
50 deletions.
There are no files selected for viewing
11 changes: 1 addition & 10 deletions
11
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
{% extends "eligibility/unverified.html" %} | ||
{% extends "eligibility/unverified-error-agency-base.html" %} | ||
{% load i18n %} | ||
|
||
{% block unverified-headline %} | ||
{% translate "Your card information may not have been entered correctly." %} | ||
{% endblock unverified-headline %} | ||
|
||
{% block unverified-body %} | ||
{% translate "The number and last name must be entered exactly as they appear on your CST Agency Card. Please check your card and try again, or contact your transit agency for help." %} | ||
{% endblock unverified-body %} | ||
|
||
{% block unverified-call-to-action %} | ||
{% translate "Try again" as button_text %} | ||
<div class="col-lg-3 col-8">{% include "core/includes/button--origin.html" with button_text=button_text %}</div> | ||
{% endblock unverified-call-to-action %} |
11 changes: 1 addition & 10 deletions
11
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
{% extends "eligibility/unverified.html" %} | ||
{% extends "eligibility/unverified-error-agency-base.html" %} | ||
{% load i18n %} | ||
|
||
{% block unverified-headline %} | ||
{% translate "Your card information may not have been entered correctly." %} | ||
{% endblock unverified-headline %} | ||
|
||
{% block unverified-body %} | ||
{% translate "The number and last name must be entered exactly as they appear on your MST Courtesy Card. Please check your card and try again, or contact your transit agency for help." %} | ||
{% endblock unverified-body %} | ||
|
||
{% block unverified-call-to-action %} | ||
{% translate "Try again" as button_text %} | ||
<div class="col-lg-3 col-8">{% include "core/includes/button--origin.html" with button_text=button_text %}</div> | ||
{% endblock unverified-call-to-action %} |
11 changes: 1 addition & 10 deletions
11
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
{% extends "eligibility/unverified.html" %} | ||
{% extends "eligibility/unverified-error-agency-base.html" %} | ||
{% load i18n %} | ||
|
||
{% block unverified-headline %} | ||
{% translate "Your card information may not have been entered correctly." %} | ||
{% endblock unverified-headline %} | ||
|
||
{% block unverified-body %} | ||
{% translate "The number and last name must be entered exactly as they appear on your SBMTD Reduced Fare Mobility ID card. Please check your card and try again, or contact your transit agency for help." %} | ||
{% endblock unverified-body %} | ||
|
||
{% block unverified-call-to-action %} | ||
{% translate "Try again" as button_text %} | ||
<div class="col-lg-3 col-8">{% include "core/includes/button--origin.html" with button_text=button_text %}</div> | ||
{% endblock unverified-call-to-action %} |
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--origin.html" with button_text=button_text %} | ||
{% 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
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