From 1515229de71d4e320f9364c08f69495fd9d1e47c Mon Sep 17 00:00:00 2001 From: alexjanousekGSA Date: Wed, 6 Aug 2025 21:13:26 -0400 Subject: [PATCH] Removed govuk padding util --- app/main/views/pricing.py | 3 +-- app/templates/components/flash_messages.html | 2 +- app/templates/components/folder-path.html | 2 +- app/templates/error/403.html | 2 +- app/templates/error/404.html | 2 +- app/templates/error/410.html | 2 +- app/templates/error/500.html | 2 +- .../partials/jobs/notifications.html | 6 ++--- app/templates/partials/jobs/status.html | 2 +- .../guidance-formatting-letters.html | 2 +- .../templates/guidance-formatting.html | 10 ++++---- .../templates/guidance-optional-content.html | 2 +- .../templates/guidance-personalization.html | 2 +- .../templates/guidance-send-a-document.html | 2 +- app/templates/partials/tour.html | 14 +++++------ app/templates/views/api/callbacks.html | 2 +- app/templates/views/api/index.html | 4 ++-- app/templates/views/api/keys/show.html | 2 +- app/templates/views/check/ok.html | 2 +- app/templates/views/check/preview.html | 2 +- app/templates/views/choose-account.html | 2 +- .../views/conversations/conversation.html | 4 ++-- .../dashboard/all-template-statistics.html | 2 +- app/templates/views/dashboard/monthly.html | 2 +- app/templates/views/features.html | 24 +++++++++---------- .../views/features/text-messages.html | 4 ++-- .../views/find-users/user-information.html | 2 +- .../how-to/edit-and-format-messages.html | 10 ++++---- app/templates/views/manage-users.html | 4 ++-- .../manage-users/confirm-edit-user-email.html | 2 +- .../confirm-edit-user-mobile-number.html | 2 +- .../views/manage-users/permissions.html | 2 +- app/templates/views/message-status.html | 14 +++++------ app/templates/views/notifications/check.html | 6 ++--- .../views/notifications/preview.html | 6 ++--- app/templates/views/organizations/index.html | 2 +- .../organizations/organization/index.html | 10 ++++---- .../organization/settings/index.html | 2 +- .../organization/users/index.html | 2 +- .../organization/users/invite-org-user.html | 2 +- app/templates/views/performance.html | 2 +- .../views/platform-admin/_global_stats.html | 2 +- .../daily-sms-provider-volumes-report.html | 2 +- .../platform-admin/daily-volumes-report.html | 2 +- .../platform-admin/get-billing-report.html | 2 +- .../platform-admin/get-users-report.html | 2 +- app/templates/views/platform-admin/index.html | 4 ++-- .../views/platform-admin/services.html | 2 +- .../volumes-by-service-report.html | 2 +- app/templates/views/send.html | 2 +- app/templates/views/service-settings.html | 4 ++-- .../service-settings/data-retention.html | 4 ++-- .../email-reply-to/_verify-updates.html | 2 +- .../service-settings/email_reply_to.html | 2 +- .../service-settings/sms-sender/edit.html | 2 +- .../views/service-settings/sms-senders.html | 2 +- app/templates/views/temp-history.html | 6 ++--- app/templates/views/templates/_template.html | 2 +- .../views/templates/choose-reply.html | 2 +- app/templates/views/templates/template.html | 2 +- app/templates/views/usage.html | 4 ++-- backstop.config.js | 2 +- 62 files changed, 113 insertions(+), 114 deletions(-) diff --git a/app/main/views/pricing.py b/app/main/views/pricing.py index 396e4b28d..f9fc0dc4c 100644 --- a/app/main/views/pricing.py +++ b/app/main/views/pricing.py @@ -1,5 +1,4 @@ -from flask import current_app, render_template -from flask_login import current_user +from flask import render_template from app.main import main from app.main.forms import SearchByNameForm diff --git a/app/templates/components/flash_messages.html b/app/templates/components/flash_messages.html index ddd3d0410..bbf0dcbd0 100644 --- a/app/templates/components/flash_messages.html +++ b/app/templates/components/flash_messages.html @@ -9,7 +9,7 @@ {% else %} {% set delete_button_text = None %} {% endif %} -
+
{{ banner( message if message is string else message[0], 'default' if ((category == 'default') or (category == 'default_with_tick')) else 'dangerous', diff --git a/app/templates/components/folder-path.html b/app/templates/components/folder-path.html index 7626f7bda..f57efd7b3 100644 --- a/app/templates/components/folder-path.html +++ b/app/templates/components/folder-path.html @@ -41,7 +41,7 @@ current_user ) %} {% if folder_path %} -

+

{% if folder_path|length == 1 %} Services {{ folder_path_separator() }} diff --git a/app/templates/error/403.html b/app/templates/error/403.html index 4bad0f94d..74a8acfd6 100644 --- a/app/templates/error/403.html +++ b/app/templates/error/403.html @@ -3,7 +3,7 @@ {% block maincolumn_content %}
-

+

You’re not allowed to see this page

diff --git a/app/templates/error/404.html b/app/templates/error/404.html index f03e4d044..7bfcd85e0 100644 --- a/app/templates/error/404.html +++ b/app/templates/error/404.html @@ -3,7 +3,7 @@ {% block maincolumn_content %}

-

+

Page not found

diff --git a/app/templates/error/410.html b/app/templates/error/410.html index f03e4d044..7bfcd85e0 100644 --- a/app/templates/error/410.html +++ b/app/templates/error/410.html @@ -3,7 +3,7 @@ {% block maincolumn_content %}

-

+

Page not found

diff --git a/app/templates/error/500.html b/app/templates/error/500.html index d76a8759c..42390bc83 100644 --- a/app/templates/error/500.html +++ b/app/templates/error/500.html @@ -3,7 +3,7 @@ {% block maincolumn_content %}

-

+

Sorry, we can't deliver what you asked for right now.

diff --git a/app/templates/partials/jobs/notifications.html b/app/templates/partials/jobs/notifications.html index 6df3085ee..95b2055bc 100644 --- a/app/templates/partials/jobs/notifications.html +++ b/app/templates/partials/jobs/notifications.html @@ -25,12 +25,12 @@

{% endif %} {% if job.still_processing %} -

+

Report is {{ "{:.0f}%".format(job.percentage_complete * 0.99) }} complete…

{% elif notifications and time_left != "Data no longer available" %} -

- Download this report (CSV) +

+ Download this report (CSV){{ time_left }}

diff --git a/app/templates/partials/jobs/status.html b/app/templates/partials/jobs/status.html index d56d73201..810a9777d 100644 --- a/app/templates/partials/jobs/status.html +++ b/app/templates/partials/jobs/status.html @@ -20,7 +20,7 @@ {% endset %}
-

+

{% if not job.finished_processing %} {% if job.scheduled_for %}

diff --git a/app/templates/partials/templates/guidance-formatting-letters.html b/app/templates/partials/templates/guidance-formatting-letters.html index 183de080c..91cc5546b 100644 --- a/app/templates/partials/templates/guidance-formatting-letters.html +++ b/app/templates/partials/templates/guidance-formatting-letters.html @@ -1,6 +1,6 @@ {% from "components/components/inset-text/macro.njk" import usaInsetText %} -

Formatting

+

Formatting

To put a heading in your template, use a hash:

diff --git a/app/templates/partials/templates/guidance-formatting.html b/app/templates/partials/templates/guidance-formatting.html index 6589701cf..589fee4cf 100644 --- a/app/templates/partials/templates/guidance-formatting.html +++ b/app/templates/partials/templates/guidance-formatting.html @@ -1,13 +1,13 @@ {% from "components/components/inset-text/macro.njk" import usaInsetText %} -

Formatting

-

+

Formatting

+

To put a title in your template, use a hash:

{{ usaInsetText({"text": "# This is a title", "classes": ""})}}
-

+

To make bullet points, use asterisks:

@@ -18,13 +18,13 @@ "classes": ""}) }}
-

+

To add inset text, use a caret:

{{ usaInsetText({"text": "^ You must tell us if your circumstances change", "classes": ""})}}
-

+

To add a horizontal line, use three dashes:

{{ usaInsetText({ diff --git a/app/templates/partials/templates/guidance-optional-content.html b/app/templates/partials/templates/guidance-optional-content.html index 6b74effcb..209593179 100644 --- a/app/templates/partials/templates/guidance-optional-content.html +++ b/app/templates/partials/templates/guidance-optional-content.html @@ -9,7 +9,7 @@

Use double parenthesis and ‘??’ to define optional content.

-

+

For example if you only want to show something to people who are under 18:

diff --git a/app/templates/partials/templates/guidance-personalization.html b/app/templates/partials/templates/guidance-personalization.html index 0c11906cd..5cb77b94b 100644 --- a/app/templates/partials/templates/guidance-personalization.html +++ b/app/templates/partials/templates/guidance-personalization.html @@ -6,7 +6,7 @@

-

+

Use double parenthesis to personalize your message:

{{ usaInsetText({ diff --git a/app/templates/partials/templates/guidance-send-a-document.html b/app/templates/partials/templates/guidance-send-a-document.html index d9841869a..9d9afef5d 100644 --- a/app/templates/partials/templates/guidance-send-a-document.html +++ b/app/templates/partials/templates/guidance-send-a-document.html @@ -1,6 +1,6 @@ {% from "components/components/inset-text/macro.njk" import usaInsetText %} -

+

Send a document by email

diff --git a/app/templates/partials/tour.html b/app/templates/partials/tour.html index 1862c7c79..598129641 100644 --- a/app/templates/partials/tour.html +++ b/app/templates/partials/tour.html @@ -1,10 +1,10 @@ {% from "components/banner.html" import banner_wrapper %} {% call banner_wrapper(type='tour') %} -

Try sending yourself this example

-
+

Try sending yourself this example

+
-

1.

+

1.

@@ -12,9 +12,9 @@

-
+
-

2.

+

2.

@@ -22,9 +22,9 @@

-
+
-

3.

+

3.

diff --git a/app/templates/views/api/callbacks.html b/app/templates/views/api/callbacks.html index e0c83cc19..e85dc1def 100644 --- a/app/templates/views/api/callbacks.html +++ b/app/templates/views/api/callbacks.html @@ -15,7 +15,7 @@ {% block maincolumn_content %} {{ page_header('Callbacks') }}

-
+
{% call mapping_table( caption='General', field_headings=['Label', 'Value', 'Action'], diff --git a/app/templates/views/api/index.html b/app/templates/views/api/index.html index 222a0f7cb..80001239d 100644 --- a/app/templates/views/api/index.html +++ b/app/templates/views/api/index.html @@ -8,7 +8,7 @@ {% block maincolumn_content %} -

+

API integration

@@ -26,7 +26,7 @@
-

+

Message log

diff --git a/app/templates/views/api/keys/show.html b/app/templates/views/api/keys/show.html index 0ef168872..97f944ca0 100644 --- a/app/templates/views/api/keys/show.html +++ b/app/templates/views/api/keys/show.html @@ -20,7 +20,7 @@ You will not be able to see it again once you leave this page.

-
+
{{ copy_to_clipboard( '{}-{}-{}'.format(key_name, service_id, secret), diff --git a/app/templates/views/check/ok.html b/app/templates/views/check/ok.html index c7461bc2a..beb01c31b 100644 --- a/app/templates/views/check/ok.html +++ b/app/templates/views/check/ok.html @@ -20,7 +20,7 @@ {{ page_header('Select delivery time') }} {{ template|string }} -
+
{# Alert for users of AT #} File uploaded successfully
{% endif %} - diff --git a/app/templates/views/choose-account.html b/app/templates/views/choose-account.html index 0ac05ec15..4d21abaea 100644 --- a/app/templates/views/choose-account.html +++ b/app/templates/views/choose-account.html @@ -49,7 +49,7 @@ {% block maincolumn_content %} -

+

Choose service

diff --git a/app/templates/views/conversations/conversation.html b/app/templates/views/conversations/conversation.html index 79022dec4..3355e683e 100644 --- a/app/templates/views/conversations/conversation.html +++ b/app/templates/views/conversations/conversation.html @@ -15,8 +15,8 @@
-
-

+
+

{{ user_number }}

diff --git a/app/templates/views/dashboard/all-template-statistics.html b/app/templates/views/dashboard/all-template-statistics.html index a61587e57..19bba01a1 100644 --- a/app/templates/views/dashboard/all-template-statistics.html +++ b/app/templates/views/dashboard/all-template-statistics.html @@ -12,7 +12,7 @@ {{ page_header("Templates used") }} -
+
{{ pill( items=years, current_value=selected_year, diff --git a/app/templates/views/dashboard/monthly.html b/app/templates/views/dashboard/monthly.html index 4a207f9f5..c7a18f5d7 100644 --- a/app/templates/views/dashboard/monthly.html +++ b/app/templates/views/dashboard/monthly.html @@ -12,7 +12,7 @@ {% block maincolumn_content %} {{ page_header('Messages sent') }} -
+
{{ pill( items=years, current_value=selected_year, diff --git a/app/templates/views/features.html b/app/templates/views/features.html index 0f7e7eb58..83a891947 100644 --- a/app/templates/views/features.html +++ b/app/templates/views/features.html @@ -18,30 +18,30 @@

Create an account for free and try it yourself.

{% endif %} -

Reusable message templates

+

Reusable message templates

To send a text with Notify, you need to create a reusable message template first.

Templates let you send the same thing to lots of people, as often as you need to, without writing a new message each time.

-

Organizing your content

+

Organizing your content

You can organize your content by grouping templates, and putting them into folders.

Set up folders within the Send message section of Notify, where you find templates. You can choose to create a Folder before or after a template is made. If you want to change a user’s ability to view or edit folders, you may control this through their individual team member permissions.

-

Personalized content

+

Personalized content

Notify makes it easy to send personalized messages from a single template.

See how to personalize your content.

-

Bulk sending

+

Bulk sending

To send a batch of messages at once, upload a list of contact details to Notify. You can also schedule the date and time you want them to be sent.

- -

Reporting

+

Reporting

Notify’s real-time dashboard lets you see the number of messages sent. You can also check the current status of any message to see when it was delivered.

Read more about the delivery status of your messages.

-

Permissions

+

Permissions

Control which members of your team can see, create, edit, and send messages.

Notify lets you:

    @@ -49,7 +49,7 @@
  • choose who else can manage team members
-

Performance

+

Performance

Notify commits to sending 95% of text messages within 10 seconds.

-

Security

+

Security

Notify protects and manages data to meet the needs of government services.

-

Hide sensitive information

+

Hide sensitive information

Notify lets you redact personal information from your messages after they have been sent. This means that only the recipient can see that information.

-

Two-factor authentication

+

Two-factor authentication

Notify uses two-factor authentication (2FA) to keep your account secure. When you sign in, we’ll send a unique one-time code to your phone and ask you to enter it before we let you use your account.

Read more about security. - diff --git a/app/templates/views/features/text-messages.html b/app/templates/views/features/text-messages.html index 0acad292a..393be5f0e 100644 --- a/app/templates/views/features/text-messages.html +++ b/app/templates/views/features/text-messages.html @@ -14,7 +14,7 @@

Create an account and try Notify for yourself.

{% endif %} -

Features

+

Features

Notify makes it easy to:

  • create reusable text message templates
  • @@ -38,7 +38,7 @@
  • Select Change or Add text message sender.
  • -

    Pricing

    +

    Pricing

    Each service you add has an annual allowance of free text messages.

    See pricing for more details.

    diff --git a/app/templates/views/find-users/user-information.html b/app/templates/views/find-users/user-information.html index 4575f4748..16546fe4f 100644 --- a/app/templates/views/find-users/user-information.html +++ b/app/templates/views/find-users/user-information.html @@ -6,7 +6,7 @@ {% endblock %} {% block platform_admin_content %} -
    +

    {{ user.name }} diff --git a/app/templates/views/how-to/edit-and-format-messages.html b/app/templates/views/how-to/edit-and-format-messages.html index d018aaa1c..ee56a7f0e 100644 --- a/app/templates/views/how-to/edit-and-format-messages.html +++ b/app/templates/views/how-to/edit-and-format-messages.html @@ -7,7 +7,7 @@ {% block content_column_content %} -

    Edit and format messages

    +

    Edit and format messages

    This page explains how to:

    -

    Format your content

    +

    Format your content

    You can see a list of formatting instructions on the edit template page:

    @@ -36,7 +36,7 @@

    Notify does not allow bold, italics, subheadings, underlined text or different fonts. This is because they can make it harder for users to read what you’ve written.

    --> - +

    When composing a text message, write URLs in full and Notify will convert them into links for you.

    @@ -50,7 +50,7 @@
  • you can no longer control where the redirect goes
-

Personalize your content

+

Personalize your content

To personalize the content of your messages, add a placeholder to the template.

@@ -74,7 +74,7 @@

If you upload a list, the column names need to match the placeholders in your template.

-

Add optional content

+

Add optional content

To add optional content to your messages:

diff --git a/app/templates/views/manage-users.html b/app/templates/views/manage-users.html index 8415adc56..3e0b7755b 100644 --- a/app/templates/views/manage-users.html +++ b/app/templates/views/manage-users.html @@ -44,9 +44,9 @@

{%- if user.name -%} - {{ user.name }} + {{ user.name }} {%- else -%} - {{ user.email_address }} + {{ user.email_address }} {%- endif -%}

diff --git a/app/templates/views/manage-users/confirm-edit-user-email.html b/app/templates/views/manage-users/confirm-edit-user-email.html index 6cd5446ca..61ef6fa87 100644 --- a/app/templates/views/manage-users/confirm-edit-user-email.html +++ b/app/templates/views/manage-users/confirm-edit-user-email.html @@ -21,7 +21,7 @@

{% call form_wrapper() %}

New email address:

-
+

{{ new_email }}

We will send {{ user.name }} an email to tell them about the change.

diff --git a/app/templates/views/manage-users/confirm-edit-user-mobile-number.html b/app/templates/views/manage-users/confirm-edit-user-mobile-number.html index 1bc2158ad..415c7e899 100644 --- a/app/templates/views/manage-users/confirm-edit-user-mobile-number.html +++ b/app/templates/views/manage-users/confirm-edit-user-mobile-number.html @@ -20,7 +20,7 @@
{% call form_wrapper() %}

New mobile number:

-
+

{{ new_mobile_number }}

We will send {{ user.name }} a text message to tell them about the change.

diff --git a/app/templates/views/manage-users/permissions.html b/app/templates/views/manage-users/permissions.html index c01bb9c34..010081a09 100644 --- a/app/templates/views/manage-users/permissions.html +++ b/app/templates/views/manage-users/permissions.html @@ -5,7 +5,7 @@ {% if form.folder_permissions.all_template_folders %} {{ form.folder_permissions }} {% elif user and user.platform_admin %} -

+

Platform admin users can access all template folders.

{% endif %} diff --git a/app/templates/views/message-status.html b/app/templates/views/message-status.html index 243260531..3b2db3c78 100644 --- a/app/templates/views/message-status.html +++ b/app/templates/views/message-status.html @@ -19,8 +19,8 @@ -

Text messages

+

Text messages

{% call mapping_table( caption='Message statuses – text messages', @@ -73,14 +73,14 @@ {% endfor %} {% endcall %}
-

About carrier statuses

+

About carrier statuses

Sometimes Notify receives more detailed information from the carriers on the status of messages, and these can be found in the downloadable reports. Not all carriers provide the same level of detail regarding delivery and some delivery statutes have a slight variation in word choice. Notify includes this information in the reports to provide you as much detail as possible. Remember, for security purposes, detailed information is only available for seven days after a message has been sent.

-

Opting out

+

Opting out

A text recipient can opt out of receiving text messages from your phone number at any time by responding “STOP” or “QUIT” or one of several other keywords. If they opt out,

    diff --git a/app/templates/views/notifications/check.html b/app/templates/views/notifications/check.html index 1e9e347f0..9cb6030b1 100644 --- a/app/templates/views/notifications/check.html +++ b/app/templates/views/notifications/check.html @@ -14,7 +14,7 @@ {% block maincolumn_content %} {% if error == 'not-allowed-to-send-to' %} -
    +
    {% call banner_wrapper(type='dangerous') %} {% with count_of_recipients=1, @@ -27,14 +27,14 @@ {% endcall %}
    {% elif error == 'too-many-messages' %} -
    +
    {% call banner_wrapper(type='dangerous') %} {% include "partials/check/too-many-messages.html" %} {% endcall %}
    {% elif error == 'message-too-long' %} {# the only row_errors we can get when sending one off messages is that the message is too long #} -
    +
    {% call banner_wrapper(type='dangerous') %} {% include "partials/check/message-too-long.html" %} {% endcall %} diff --git a/app/templates/views/notifications/preview.html b/app/templates/views/notifications/preview.html index 29c4d6aa6..ae1a952b5 100644 --- a/app/templates/views/notifications/preview.html +++ b/app/templates/views/notifications/preview.html @@ -24,7 +24,7 @@ {% block maincolumn_content %} {% if error == 'not-allowed-to-send-to' %} -
    +
    {% call banner_wrapper(type='dangerous') %} {% with count_of_recipients=1, @@ -37,13 +37,13 @@ {% endcall %}
    {% elif error == 'too-many-messages' %} -
    +
    {% call banner_wrapper(type='dangerous') %} {% include "partials/check/too-many-messages.html" %} {% endcall %}
    {% elif error == 'message-too-long' %} -
    +
    {% call banner_wrapper(type='dangerous') %} {% include "partials/check/message-too-long.html" %} {% endcall %} diff --git a/app/templates/views/organizations/index.html b/app/templates/views/organizations/index.html index 9830b47f0..42574abf4 100644 --- a/app/templates/views/organizations/index.html +++ b/app/templates/views/organizations/index.html @@ -18,7 +18,7 @@
  • {{ org.name }} {% if not org.active %} - - archived + - archived {% endif %}

    {{ org.count_of_live_services }} diff --git a/app/templates/views/organizations/organization/index.html b/app/templates/views/organizations/organization/index.html index a508d50b1..6014333d7 100644 --- a/app/templates/views/organizations/organization/index.html +++ b/app/templates/views/organizations/organization/index.html @@ -12,13 +12,13 @@ {{ page_header('Usage', size='medium') }} -

    +
    {{ pill(years, selected_year, big_number_args={'smallest': True}) }}
    -
    +
    -

    Emails

    +

    Emails

    {{ big_number( total_emails_sent, @@ -28,7 +28,7 @@
    -

    Text messages

    +

    Text messages

    {{ big_number( total_sms_cost, @@ -51,7 +51,7 @@
    {% endif %} -

    By service

    +

    By service

    {% for service in services %}
    diff --git a/app/templates/views/organizations/organization/settings/index.html b/app/templates/views/organizations/organization/settings/index.html index b13c651d1..96f6887f3 100644 --- a/app/templates/views/organizations/organization/settings/index.html +++ b/app/templates/views/organizations/organization/settings/index.html @@ -7,7 +7,7 @@ {% block maincolumn_content %}

    Settings

    -
    +
    {% call mapping_table( caption='General', field_headings=['Label', 'Value', 'Action'], diff --git a/app/templates/views/organizations/organization/users/index.html b/app/templates/views/organizations/organization/users/index.html index 19b52b0db..3b2e7f767 100644 --- a/app/templates/views/organizations/organization/users/index.html +++ b/app/templates/views/organizations/organization/users/index.html @@ -36,7 +36,7 @@

    {%- if user.name -%} - {{ user.name }}  + {{ user.name }}  {%- endif -%} {%- if user.status == 'pending' -%} diff --git a/app/templates/views/organizations/organization/users/invite-org-user.html b/app/templates/views/organizations/organization/users/invite-org-user.html index ea4728022..f8a61bc79 100644 --- a/app/templates/views/organizations/organization/users/invite-org-user.html +++ b/app/templates/views/organizations/organization/users/invite-org-user.html @@ -24,7 +24,7 @@ error_message_with_html=True ) }} -
    +

    {{ current_org.name }} team members can:

    diff --git a/app/templates/views/performance.html b/app/templates/views/performance.html index 92ea6afe9..6873a947d 100644 --- a/app/templates/views/performance.html +++ b/app/templates/views/performance.html @@ -109,7 +109,7 @@

    Organizations using Notify

    -
    +
    There are
    {{ count_of_live_services_and_organizations.organizations|format_thousands }}
    diff --git a/app/templates/views/platform-admin/_global_stats.html b/app/templates/views/platform-admin/_global_stats.html index 70ba725a7..47f77eea0 100644 --- a/app/templates/views/platform-admin/_global_stats.html +++ b/app/templates/views/platform-admin/_global_stats.html @@ -1,4 +1,4 @@ -
    +
    {% if link %} diff --git a/app/templates/views/platform-admin/daily-sms-provider-volumes-report.html b/app/templates/views/platform-admin/daily-sms-provider-volumes-report.html index 215e6cb29..af5161a1a 100644 --- a/app/templates/views/platform-admin/daily-sms-provider-volumes-report.html +++ b/app/templates/views/platform-admin/daily-sms-provider-volumes-report.html @@ -21,7 +21,7 @@

    Data included in the report

    -
    +
    {% call mapping_table( caption='Descriptions of daily SMS provider volumes data', field_headings=['Name', 'Description'], diff --git a/app/templates/views/platform-admin/daily-volumes-report.html b/app/templates/views/platform-admin/daily-volumes-report.html index 483fd9a90..e91fa2176 100644 --- a/app/templates/views/platform-admin/daily-volumes-report.html +++ b/app/templates/views/platform-admin/daily-volumes-report.html @@ -21,7 +21,7 @@

    Data included in the report

    -
    +
    {% call mapping_table( caption='Descriptions of daily volumes data', field_headings=['Name', 'Description'], diff --git a/app/templates/views/platform-admin/get-billing-report.html b/app/templates/views/platform-admin/get-billing-report.html index c4fd43737..004303dc2 100644 --- a/app/templates/views/platform-admin/get-billing-report.html +++ b/app/templates/views/platform-admin/get-billing-report.html @@ -21,7 +21,7 @@

    Data included in the report

    -
    +
    {% call mapping_table( caption='Descriptions of billing report data', field_headings=['Name', 'Description'], diff --git a/app/templates/views/platform-admin/get-users-report.html b/app/templates/views/platform-admin/get-users-report.html index 412732e53..dcd5c1a58 100644 --- a/app/templates/views/platform-admin/get-users-report.html +++ b/app/templates/views/platform-admin/get-users-report.html @@ -21,7 +21,7 @@

    Data included in the report

    -
    +
    {% call mapping_table( caption='Descriptions of billing report data', field_headings=['Name', 'Description'], diff --git a/app/templates/views/platform-admin/index.html b/app/templates/views/platform-admin/index.html index abb1838cf..990669151 100644 --- a/app/templates/views/platform-admin/index.html +++ b/app/templates/views/platform-admin/index.html @@ -29,7 +29,7 @@ "open": form.errors | convert_to_boolean }) }} -
    +
    {% for noti_type in global_stats %}
    @@ -54,7 +54,7 @@ {% endfor %}
    -
    +
    {% for noti_type in global_stats %}
    diff --git a/app/templates/views/platform-admin/services.html b/app/templates/views/platform-admin/services.html index 280ce796f..722f736e4 100644 --- a/app/templates/views/platform-admin/services.html +++ b/app/templates/views/platform-admin/services.html @@ -26,7 +26,7 @@ {% call field(border=False, colspan=3) %} {{ service['name'] }} {% if not service['active'] %} -  Archived +  Archived {% endif %} {% if service['name'] == 'Test service' %} Load Test diff --git a/app/templates/views/platform-admin/volumes-by-service-report.html b/app/templates/views/platform-admin/volumes-by-service-report.html index c1f030f68..d65dd14ad 100644 --- a/app/templates/views/platform-admin/volumes-by-service-report.html +++ b/app/templates/views/platform-admin/volumes-by-service-report.html @@ -21,7 +21,7 @@

    Data included in the report

    -
    +
    {% call mapping_table( caption='Descriptions of volumes by service data', field_headings=['Name', 'Description'], diff --git a/app/templates/views/send.html b/app/templates/views/send.html index 765c06d4d..d29ce2fb6 100644 --- a/app/templates/views/send.html +++ b/app/templates/views/send.html @@ -63,7 +63,7 @@ {{ page_header('Upload your bulk-sending spreadsheet')}}

    Organize phone numbers and information in a single spreadsheet and upload when you have multiple messages to send. Column headers in the spreadsheet will place the data in the right spots within the template that's selected.

    -