mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-04 21:40:23 -04:00
Includes: - turning off :visited styles to match existing design - swapping heading classes used to make links bold for the GOVUK Frontend bold override class - adding visually hidden text to some links to make them work when isolated from their context We may need to revisit whether some links, such as those for documentation and features, may benefit from having some indication that their target has been visited.
34 lines
821 B
HTML
34 lines
821 B
HTML
{% from "components/ajax-block.html" import ajax_block %}
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
Received text message
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="dashboard">
|
|
|
|
<div class="bottom-gutter js-stick-at-top-when-scrolling">
|
|
<h1 class="heading-large">
|
|
{{ user_number }}
|
|
</h1>
|
|
</div>
|
|
|
|
{{ ajax_block(
|
|
partials,
|
|
updates_url,
|
|
'messages',
|
|
) }}
|
|
|
|
{% if current_user.has_permissions('send_messages') %}
|
|
<p class="sms-message-reply-link">
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.conversation_reply', service_id=current_service.id, notification_id=notification_id) }}">Send a text message to this phone number</a>
|
|
</p>
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|