Reverse the order of the filters on activity page

So that they match the order of the page title, eg ‘Failed text
messages’
This commit is contained in:
Chris Hill-Scott
2016-04-15 14:05:00 +01:00
parent 9c0d7c17cf
commit 7ddaf56aa9

View File

@@ -49,16 +49,16 @@
<div class='grid-row bottom-gutter'>
<div class='column-half'>
{{ pill(
'Type',
type_filters,
request_args.get('template_type', '')
'Status',
status_filters,
request_args.get('status', '')
) }}
</div>
<div class='column-half'>
{{ pill(
'Status',
status_filters,
request_args.get('status', '')
'Type',
type_filters,
request_args.get('template_type', '')
) }}
</div>
</div>