Skip to content

Commit

Permalink
add missing arg
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed Jul 2, 2024
1 parent 8c16c17 commit 79a5e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neapolitan/templatetags/neapolitan.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def object_list(objects, view):
{
"object": object,
"fields": [{"name": f, "value": str(getattr(object, f))} for f in fields],
"actions": action_links(object),
"actions": action_links(view, object),
}
for object in objects
]
Expand Down

0 comments on commit 79a5e87

Please sign in to comment.