mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
Fix ordering of jobs
This commit is contained in:
@@ -41,7 +41,7 @@ def service_dashboard(service_id):
|
|||||||
raise e
|
raise e
|
||||||
return render_template(
|
return render_template(
|
||||||
'views/service_dashboard.html',
|
'views/service_dashboard.html',
|
||||||
jobs=list(reversed(jobs))[:5],
|
jobs=jobs[:5],
|
||||||
more_jobs_to_show=(len(jobs) > 5),
|
more_jobs_to_show=(len(jobs) > 5),
|
||||||
free_text_messages_remaining='250,000',
|
free_text_messages_remaining='250,000',
|
||||||
spent_this_month='0.00',
|
spent_this_month='0.00',
|
||||||
|
|||||||
Reference in New Issue
Block a user