Skip to content

Commit

Permalink
Merge pull request #52 from maykinmedia/feature/51-creation-date
Browse files Browse the repository at this point in the history
[#51] Return 'created' field for the destruction list
  • Loading branch information
SilviaAmAm authored May 23, 2024
2 parents f2973fa + b1c7009 commit 6cd2b49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/openarchiefbeheer/destruction/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@admin.register(DestructionList)
class DestructionListAdmin(admin.ModelAdmin):
list_display = ("name", "status", "end")
list_display = ("name", "status", "created", "end")
list_filter = ("status", "assignee")
search_fields = ("name",)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,5 @@ class Meta:
"assignees",
"items",
"status",
"created",
)

0 comments on commit 6cd2b49

Please sign in to comment.