diff --git a/apis_core/apis_history/tables.py b/apis_core/apis_history/tables.py index bbe607e32..54caf7359 100644 --- a/apis_core/apis_history/tables.py +++ b/apis_core/apis_history/tables.py @@ -18,13 +18,14 @@ class OriginalIDColumn(CustomTemplateColumn): template_name = "apis_history/columns/original_id.html" orderable = False + verbose_name = "most recent" class APISHistoryTableBaseTable(tables.Table): history_id = tables.Column(verbose_name="ID") - orig_id = OriginalIDColumn() + most_recent = OriginalIDColumn() desc = DescriptionColumnHistory() view = ViewColumn() class Meta: - fields = ["history_id", "desc", "view"] + fields = ["history_id", "desc", "most_recent", "view"]