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='grid-row bottom-gutter'>
<div class='column-half'> <div class='column-half'>
{{ pill( {{ pill(
'Type', 'Status',
type_filters, status_filters,
request_args.get('template_type', '') request_args.get('status', '')
) }} ) }}
</div> </div>
<div class='column-half'> <div class='column-half'>
{{ pill( {{ pill(
'Status', 'Type',
status_filters, type_filters,
request_args.get('status', '') request_args.get('template_type', '')
) }} ) }}
</div> </div>
</div> </div>