Convert all LinkColumns to Column(linkify=True)

This commit is contained in:
jeremystretch
2021-04-02 16:59:53 -04:00
parent 4b89024783
commit 30ff6edb4b
11 changed files with 80 additions and 42 deletions

View File

@@ -58,7 +58,9 @@ class TaggedItemTable(BaseTable):
class ConfigContextTable(BaseTable):
pk = ToggleColumn()
name = tables.LinkColumn()
name = tables.Column(
linkify=True
)
is_active = BooleanColumn(
verbose_name='Active'
)