mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-13 17:59:45 -04:00
810 - Content updates to link area in Send Message flow
This commit is contained in:
@@ -66,7 +66,7 @@
|
||||
<p>Some messages include sensitive information like security codes or password reset links.</p>
|
||||
<p>If you’re sending a message with sensitive information, you can choose to hide those details on the Notify dashboard once the message has been sent. This means that only the message recipient will be able to see that information.</p>
|
||||
<img src="{{ asset_url('images/product/security-review-message.png') }}"
|
||||
alt="Screenshot of a test message in review with the link to 'hide personalization after sending' circled.">
|
||||
alt="Screenshot of a test message in review with the link to 'Hide all personalized and conditional content after sending for increased privacy protection' emphasized.">
|
||||
|
||||
<h3 class="font-body-lg">Two-factor authentication</h3>
|
||||
<p>To sign in to Notify, you’ll need to enter:</p>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
{% if show_redaction_message %}
|
||||
|
||||
<div class="bottom-gutter">
|
||||
{% call banner_wrapper(type='dangerous', subhead='Are you sure you want to hide personalization after sending?') %}
|
||||
{% call banner_wrapper(type='dangerous', subhead='Are you sure you want to hide all personalized and conditional content after sending for increased privacy protection?') %}
|
||||
<ul class="list list-bullet">
|
||||
<li>
|
||||
You will not be able to see personalized content in Notify for this template
|
||||
@@ -56,6 +56,7 @@
|
||||
{{ template._template.updated_at|format_delta }}
|
||||
</time>
|
||||
</h2>
|
||||
<h3 class="margin-bottom-0">More actions</h3>
|
||||
<ul class="usa-list usa-list--unstyled">
|
||||
<li>
|
||||
<a class="usa-link margin-right-3"
|
||||
@@ -73,7 +74,7 @@
|
||||
{% endif %}
|
||||
{% if not template._template.redact_personalisation %}
|
||||
<li>
|
||||
<a class="usa-link" href="{{ url_for('.confirm_redact_template', service_id=current_service.id, template_id=template.id) }}">Hide all personalized and conditional content after sending for increased privacy protection</a>
|
||||
<a class="usa-link" href="{{ url_for('.confirm_redact_template', service_id=current_service.id, template_id=template.id) }}">Hide all personalized and conditional content after sending</a> for increased privacy protection
|
||||
</li>
|
||||
{% else %}
|
||||
<p class="hint">Personalization is hidden after sending</p>
|
||||
|
||||
@@ -1868,7 +1868,8 @@ def test_should_show_message_before_redacting_template(
|
||||
)
|
||||
|
||||
assert (
|
||||
"Are you sure you want to hide personalization after sending?"
|
||||
"Are you sure you want to hide all personalized and conditional"
|
||||
" content after sending for increased privacy protection?"
|
||||
) in page.select(".banner-dangerous")[0].text
|
||||
|
||||
form = page.select(".banner-dangerous form")[0]
|
||||
|
||||
Reference in New Issue
Block a user