This commit is contained in:
Ross
2024-11-11 13:53:48 +00:00
parent 2a1f15683e
commit 57497cc97c
+4 -1
View File
@@ -15,8 +15,11 @@ from django.utils.html import format_html
class EntryTable(tables.Table):
view = tables.LinkColumn(
"oef:entry_detail", text="Edit", args=[A("pk")], orderable=False
)
edit = tables.LinkColumn(
"oef:entry_update", text="Edit", args=[A("pk")], orderable=False
"oef:entry_update", text="View", args=[A("pk")], orderable=False
)
class Meta: