Skip to content
Snippets Groups Projects
Commit 38f747f8 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Sort the stage by the status which has the status name first

parent d62dc689
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ class SubmissionsTable(tables.Table):
title = tables.LinkColumn('funds:submission', args=[A('pk')], orderable=True)
submit_time = tables.DateColumn(verbose_name="Submitted")
status_name = tables.Column(verbose_name="Status")
stage = tables.Column(verbose_name="Type")
stage = tables.Column(verbose_name="Type", order_by=('status',))
page = tables.Column(verbose_name="Fund")
class Meta:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment