From 7ddaf56aa9c7a3f911932b96771f177bd9fb953a Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Fri, 15 Apr 2016 14:05:00 +0100 Subject: [PATCH] Reverse the order of the filters on activity page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit So that they match the order of the page title, eg ‘Failed text messages’ --- app/templates/views/notifications.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/templates/views/notifications.html b/app/templates/views/notifications.html index 02743791e..a4c0a4a1a 100644 --- a/app/templates/views/notifications.html +++ b/app/templates/views/notifications.html @@ -49,16 +49,16 @@
{{ pill( - 'Type', - type_filters, - request_args.get('template_type', '') + 'Status', + status_filters, + request_args.get('status', '') ) }}
{{ pill( - 'Status', - status_filters, - request_args.get('status', '') + 'Type', + type_filters, + request_args.get('template_type', '') ) }}