diff --git a/atlas/tables.py b/atlas/tables.py index 72f87d38..3170ab4f 100755 --- a/atlas/tables.py +++ b/atlas/tables.py @@ -243,12 +243,12 @@ class PresentationTable(tables.Table): verbose_name="Presentation", ) - edit = tables.LinkColumn( - "atlas:presentation_update", text="Edit", args=[A("pk")], orderable=False - ) - delete = tables.LinkColumn( - "atlas:presentation_delete", text="Delete", args=[A("pk")], orderable=False - ) + #edit = tables.LinkColumn( + # "atlas:presentation_update", text="Edit", args=[A("pk")], orderable=False + #) + #delete = tables.LinkColumn( + # "atlas:presentation_delete", text="Delete", args=[A("pk")], orderable=False + #) selection = tables.CheckBoxColumn(accessor="pk", orderable=False) subspecialty = tables.ManyToManyColumn(verbose_name="Parents") @@ -266,12 +266,12 @@ class PathologicalProcessTable(tables.Table): verbose_name="PathologicalProcess", ) - edit = tables.LinkColumn( - "atlas:pathological_process_update", text="Edit", args=[A("pk")], orderable=False - ) - delete = tables.LinkColumn( - "atlas:pathological_process_delete", text="Delete", args=[A("pk")], orderable=False - ) + #edit = tables.LinkColumn( + # "atlas:pathological_process_update", text="Edit", args=[A("pk")], orderable=False + #) + #delete = tables.LinkColumn( + # "atlas:pathological_process_delete", text="Delete", args=[A("pk")], orderable=False + #) selection = tables.CheckBoxColumn(accessor="pk", orderable=False) class Meta: