mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-10 23:23:27 -05:00
* Removed all govuk css * Updated reference files * Removing govuk js * Fixed casing for modules, removed unused page * Got more reference images * Updated template page * Removed govuk padding util * Updated hint to uswds hint * More govuk cleanup * Commiting backstopjs ref files * Fixed all unit tests that broke due to brittleness around govuk styling * Added new ref images * Final removal of govuk * Officially removed all govuk references * Updated reference file * Updated link to button * UI modernization * Cleanup * removed govuk escaping tests since they are no longer needed * Fix CodeQL security issue in escapeElementName function - Escape backslashes first before other special characters - Prevents potential double-escaping vulnerability - Addresses CodeQL alert about improper string escaping * Found more govuk removal. Fixed unit tests * Add missing pipeline check to pre-commit * updated test * Updated e2e test * More update to e2e test * Fixed another e2e test * Simple PR comments addressed * More updates * Updated backstop ref files * Refactored folder selection for non-admins * Updated redundant line * Updated tests to include correct mocks * Added more ref files * Addressing carlos comments * Addressing Carlo comments, cleanup of window initing * More cleanup and addressing carlo comments * Fixing a11 scan * Fixed a few issues with javascript * Fixed for pr * Fixing e2e tests * Tweaking e2e test * Added more ref files and cleaned up urls.js * Fixed bug with creating new template * Removed brittle test - addressed code ql comment * e2e race condition fix * More e2e test fixes * Updated e2e tests to not wait for text sent * Updated test to not wait for button click response * Made tear down more resilent if staging is down * reverted e2e test to what was working before main merge * Updated backstopRef images * Updated gulp to include job-polling differently
90 lines
2.8 KiB
HTML
90 lines
2.8 KiB
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/big-number.html" import big_number %}
|
|
{% from "components/table.html" import mapping_table, field, stats_fields, row_group, row, right_aligned_field_heading, hidden_field_heading, text_field %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/components/button/macro.njk" import usaButton %}
|
|
{% from "components/components/details/macro.njk" import usaDetails %}
|
|
|
|
{% macro services_table(services, caption) %}
|
|
<div class="table-overflow-x-auto">
|
|
{% call(item, row_number) mapping_table(
|
|
caption=caption,
|
|
caption_visible=False,
|
|
field_headings=[
|
|
right_aligned_field_heading('Emails'),
|
|
right_aligned_field_heading('Text messages'),
|
|
],
|
|
field_headings_visible=False,
|
|
) %}
|
|
|
|
{% for service in services %}
|
|
|
|
{% call row_group() %}
|
|
|
|
{% call row() %}
|
|
{% call field(border=False, colspan=3) %}
|
|
<a href="{{ url_for('main.service_dashboard', service_id=service['id']) }}" class="file-list-filename-large usa-link">{{ service['name'] }}</a>
|
|
{% if not service['active'] %}
|
|
<span class="font-heading-lg usa-hint"> Archived</span>
|
|
{% endif %}
|
|
{% if service['name'] == 'Test service' %}
|
|
<a class="usa-link" href="{{ url_for('main.load_test') }}">Load Test</a>
|
|
{% endif %}
|
|
|
|
{% endcall %}
|
|
|
|
{% endcall %}
|
|
|
|
{% call row() %}
|
|
{% for channel in ('email', 'sms') %}
|
|
{% call field(border=False) %}
|
|
{{ big_number(
|
|
service['stats'][channel]['requested'],
|
|
smallest=True,
|
|
label=service['stats'][channel]['requested']|message_count_label(channel)
|
|
) }}
|
|
{% endcall %}
|
|
{% endfor %}
|
|
{% endcall %}
|
|
|
|
{% endcall %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endcall %}
|
|
</div>
|
|
{% endmacro %}
|
|
|
|
|
|
{% block per_page_title %}
|
|
{{ page_title|capitalize }}
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<h1 class="font-body-2xl">
|
|
{{ page_title|capitalize }}
|
|
</h1>
|
|
|
|
|
|
{% set details_content %}
|
|
{% call form_wrapper(method="get") %}
|
|
{{ form.start_date(param_extensions={"hint": {"text": "Enter start date in format YYYY-MM-DD"}}) }}
|
|
{{ form.end_date(param_extensions={"hint": {"text": "Enter end date in format YYYY-MM-DD"}}) }}
|
|
{{ form.include_from_test_key }}
|
|
{{ usaButton({ "text": "Filter", "classes": "margin-y-2" }) }}
|
|
{% endcall %}
|
|
{% endset %}
|
|
|
|
{{ usaDetails({
|
|
"summaryText": "Apply filters",
|
|
"html": details_content
|
|
}) }}
|
|
|
|
{% include "views/platform-admin/_global_stats.html" %}
|
|
|
|
{{ services_table(services, page_title|capitalize) }}
|
|
|
|
{% endblock %}
|