Skip to content
Snippets Groups Projects
Commit 5f10da59 authored by Dan Braghis's avatar Dan Braghis
Browse files

Re-instate last_update column on the submissions table

parent 32cd199b
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ class AdminSubmissionsTable(SubmissionsTable):
reviews_stats = tables.TemplateColumn(template_name='funds/tables/column_reviews.html', verbose_name=mark_safe("Reviews\n<span>Assgn.\tComp.</span>"), orderable=False)
class Meta(SubmissionsTable.Meta):
fields = ('title', 'status_name', 'stage', 'page', 'round', 'lead', 'submit_time', 'update_time', 'reviews_stats') # type: ignore
fields = ('title', 'status_name', 'stage', 'page', 'round', 'lead', 'submit_time', 'last_update', 'reviews_stats') # type: ignore
sequence = fields + ('comments',)
......
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