mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-30 06:01:06 -04:00
Say ‘sent’ rather than ‘processed’
Hopefully users understand that sent != delivered
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
caption="By template",
|
||||
caption_visible=False,
|
||||
empty_message='You haven’t used any templates {}'.format(period),
|
||||
field_headings=['Template', hidden_field_heading('Type'), right_aligned_field_heading('Messages processed')]
|
||||
field_headings=['Template', hidden_field_heading('Type'), right_aligned_field_heading('Messages sent')]
|
||||
) %}
|
||||
{% call field() %}
|
||||
<a href="{{ url_for('.view_template', service_id=current_service.id, template_id=item.template.id) }}">
|
||||
|
||||
@@ -85,7 +85,7 @@ def test_should_show_recent_templates_on_dashboard(app_,
|
||||
assert 'Test Service' in headers
|
||||
assert 'In the last 7 days' in headers
|
||||
template_usage_headers = [th.text.strip() for th in page.thead.find_all('th')]
|
||||
for th in ['Template', 'Type', 'Messages processed']:
|
||||
for th in ['Template', 'Type', 'Messages sent']:
|
||||
assert th in template_usage_headers
|
||||
table_rows = page.tbody.find_all('tr')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user