mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-05 05:50:41 -04:00
Both `<button type='submit'>Submit<button>` and `<input type='submit' value='Submit'>` can be used to submit a form. We have historically[1] used `<input>` because it’s better-supported by IE6 in that: - the `submit` attribute is mandatory on `<button>`, not on `<input>` - the `innerHTML` of a button will be submitted to the server, not the value (as in other browsers) Reasons to now use `<button>` instead: - IE6/7 support is no longer a concern (especially with deprecation of TLS 1.0 on the way) - Because an `<input>` element can’t have children, the pseudo-element hack[2] used to ensure the top edge of the button is clickable doesn’t work. We’re seeing this bug[3] affect real users in research. 1. We inhereted our buttons from Digital Marketplace, here is me making that change in their code:8df7e2e79e (diff-b1420f7b7a25657d849edf90a70ef541)2.24e1906c0d (diff-ef0e4eb6f1e90b44b0c3fe39dce274a4R79)3. https://github.com/alphagov/govuk_elements/issues/545
119 lines
3.6 KiB
HTML
119 lines
3.6 KiB
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/checkbox.html" import checkbox %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/big-number.html" import big_number, big_number_with_status %}
|
|
{% from "components/message-count-label.html" import message_count_label %}
|
|
{% from "components/table.html" import mapping_table, field, stats_fields, row_group, row, right_aligned_field_heading, hidden_field_heading, text_field %}
|
|
|
|
{% macro stats_fields(channel, data) -%}
|
|
|
|
{% call field(border=False) %}
|
|
<span class="heading-medium">{{ channel.title() }}</span>
|
|
{% endcall %}
|
|
|
|
{% call field(align='right', border=False) %}
|
|
{{ big_number(data[channel]['sending'], smaller=True) }}
|
|
{% endcall %}
|
|
|
|
{% call field(align='right', border=False) %}
|
|
{{ big_number(data[channel]['delivered'], smaller=True) }}
|
|
{% endcall %}
|
|
|
|
{% call field(align='right', status='error' if data[channel]['failed'], border=False) %}
|
|
{{ big_number(data[channel]['failed'], smaller=True) }}
|
|
{% endcall %}
|
|
|
|
{%- endmacro %}
|
|
|
|
{% macro services_table(services, caption) %}
|
|
{% call(item, row_number) mapping_table(
|
|
caption=caption,
|
|
caption_visible=False,
|
|
field_headings=[
|
|
'Service',
|
|
hidden_field_heading('Type'),
|
|
right_aligned_field_heading('Sending'),
|
|
right_aligned_field_heading('Delivered'),
|
|
right_aligned_field_heading('Failed')
|
|
],
|
|
field_headings_visible=True
|
|
) %}
|
|
|
|
{% for service in services %}
|
|
|
|
{% call row_group() %}
|
|
|
|
{% call row() %}
|
|
{% call field(border=False) %}
|
|
<a href="{{ url_for('main.service_dashboard', service_id=service['id']) }}" class="browse-list-link">{{ service['name'] }}</a>
|
|
{% endcall %}
|
|
|
|
{{ stats_fields('email', service['stats']) }}
|
|
{% endcall %}
|
|
|
|
{% call row() %}
|
|
{% if not service['active'] %}
|
|
{% call field(status='default', border=False) %}
|
|
<span class="heading-medium">archived</span>
|
|
{% endcall %}
|
|
{% elif service['research_mode'] %}
|
|
{% call field(border=False) %}
|
|
<span class="research-mode">research mode</span>
|
|
{% endcall %}
|
|
{% elif not service['restricted'] %}
|
|
{% call field(status='error', border=False) %}
|
|
<span class="heading-medium">Live</span>
|
|
{% endcall %}
|
|
{% else %}
|
|
{% call field(border=False) %}
|
|
{% endcall %}
|
|
{% endif %}
|
|
|
|
{{ stats_fields('sms', service['stats']) }}
|
|
{% endcall %}
|
|
|
|
{% call row() %}
|
|
|
|
{% call field(border=False) %}
|
|
|
|
{% endcall %}
|
|
{{ stats_fields('letter', service['stats']) }}
|
|
|
|
{% endcall %}
|
|
|
|
{% endcall %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endcall %}
|
|
{% endmacro %}
|
|
|
|
|
|
{% block per_page_title %}
|
|
{{ page_title|capitalize }}
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<h1 class="heading-large">
|
|
{{ page_title|capitalize }}
|
|
</h1>
|
|
|
|
<details>
|
|
<summary>Apply filters</summary>
|
|
<form autocomplete="off" method="get">
|
|
{{ textbox(form.start_date, hint="Enter start date in format YYYY-MM-DD") }}
|
|
{{ textbox(form.end_date, hint="Enter end date in format YYYY-MM-DD") }}
|
|
{{ checkbox(form.include_from_test_key) }}
|
|
</br>
|
|
<button type="submit" class="button">Filter</button>
|
|
</form>
|
|
</details>
|
|
|
|
{% include "views/platform-admin/_global_stats.html" %}
|
|
|
|
{{ services_table(services, page_title|capitalize) }}
|
|
|
|
{% endblock %}
|