From ccbf8a5bcdcb6096867d413bf52609da8c6f9038 Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 5 Dec 2021 18:55:21 +0000 Subject: [PATCH] . --- atlas/tables.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/atlas/tables.py b/atlas/tables.py index 443d2d48..dc65deb0 100755 --- a/atlas/tables.py +++ b/atlas/tables.py @@ -133,12 +133,11 @@ class SeriesTable(tables.Table): ) class ConditionTable(tables.Table): + name = tables.Column(linkify=('atlas:condition_detail', {'pk': tables.A('pk')})) + #edit = tables.LinkColumn( # "atlas:condition_update", text="Edit", args=[A("pk")], orderable=False #) - name = tables.LinkColumn( - "atlas:condition_update", text=A("name"), args=[A("pk")], orderable=False - ) view = tables.LinkColumn( "atlas:condition_detail", text="View", args=[A("pk")], orderable=False )