Make ‘total’ the default status on a job

The blue bar on the job page works out which is the current status from
the query parameters, not the parameters that the API gets called with.
This commit is contained in:
Chris Hill-Scott
2016-08-05 13:42:24 +01:00
parent e482404eea
commit 8c92737282

View File

@@ -1,5 +1,5 @@
{% from "components/pill.html" import pill %}
<div class="bottom-gutter">
{{ pill('Status', counts, status) }}
{{ pill('Status', counts, request.args.get('status', '')) }}
</div>