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

Make sure the date of last_update is correct

parent b016a99f
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ class SubmissionsTable(tables.Table): ...@@ -30,7 +30,7 @@ class SubmissionsTable(tables.Table):
stage = tables.Column(verbose_name="Type", order_by=('status',)) stage = tables.Column(verbose_name="Type", order_by=('status',))
page = tables.Column(verbose_name="Fund") page = tables.Column(verbose_name="Fund")
comments = tables.Column(accessor='activities.comments.all', verbose_name="Comments") comments = tables.Column(accessor='activities.comments.all', verbose_name="Comments")
last_update = tables.DateColumn(accessor="activities.last.timestamp", verbose_name="Last updated") last_update = tables.DateColumn(accessor="activities.first.timestamp", verbose_name="Last updated")
class Meta: class Meta:
model = ApplicationSubmission model = ApplicationSubmission
......
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