Merge pull request #315 from alphagov/change-column-headings

Few changes to column headings for clarity
This commit is contained in:
minglis
2016-03-21 13:40:16 +00:00
4 changed files with 5 additions and 24 deletions

View File

@@ -45,9 +45,7 @@ def view_job(service_id, job_id):
notifications=notifications['notifications'],
counts={
'queued': 0 if finished else job['notification_count'],
'sent': job['notification_count'] if finished else 0,
'failed': 0,
'cost': u'£0.00'
'sent': job['notification_count'] if finished else 0
},
uploaded_at=job['created_at'],
finished_at=job['updated_at'] if finished else None,
@@ -74,9 +72,7 @@ def view_job_updates(service_id, job_id):
'partials/jobs/count.html',
counts={
'queued': 0 if finished else job['notification_count'],
'sent': job['notification_count'] if finished else 0,
'failed': 0,
'cost': u'£0.00'
'sent': job['notification_count'] if finished else 0
}
),
'notifications': render_template(