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 )