diff --git a/opentech/apply/dashboard/tables.py b/opentech/apply/dashboard/tables.py index 2ef02e44fc5f59f114aeca526788283c690268c9..eff2266cf71d9897058d68e3e56a665d3b2eb60f 100644 --- a/opentech/apply/dashboard/tables.py +++ b/opentech/apply/dashboard/tables.py @@ -4,11 +4,12 @@ from opentech.apply.funds.models import ApplicationSubmission class DashboardTable(tables.Table): submit_time = tables.DateColumn(verbose_name="Submitted") + status_name = tables.Column(verbose_name="Status") page = tables.Column(verbose_name="Fund") class Meta: model = ApplicationSubmission - fields = ('title', 'page', 'round', 'submit_time', 'user') + fields = ('title', 'status_name', 'page', 'round', 'submit_time', 'user') template = "dashboard/tables/table.html" def render_user(self, value):