Say ‘sent’ rather than ‘processed’

Hopefully users understand that sent != delivered
This commit is contained in:
Chris Hill-Scott
2016-04-20 14:25:05 +01:00
parent 09491e880e
commit 0080bce562
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
caption="By template",
caption_visible=False,
empty_message='You havent 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) }}">

View File

@@ -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')