Skip to content

Commit

Permalink
fix(apis_history): small change in results table
Browse files Browse the repository at this point in the history
  • Loading branch information
sennierer committed Mar 6, 2024
1 parent c867649 commit 3af5721
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apis_core/apis_history/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 3af5721

Please sign in to comment.