This commit is contained in:
Ross
2024-11-11 13:59:48 +00:00
parent 57497cc97c
commit fad940bcd4
3 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -16,10 +16,10 @@ from django.utils.html import format_html
class EntryTable(tables.Table):
view = tables.LinkColumn(
"oef:entry_detail", text="Edit", args=[A("pk")], orderable=False
"oef:entry_detail", text="View", args=[A("pk")], orderable=False
)
edit = tables.LinkColumn(
"oef:entry_update", text="View", args=[A("pk")], orderable=False
"oef:entry_update", text="Edit", args=[A("pk")], orderable=False
)
class Meta: