Skip to content

Commit

Permalink
Add contributed_at column in admin view
Browse files Browse the repository at this point in the history
  • Loading branch information
babastienne committed May 3, 2024
1 parent 73299d4 commit 74205af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion georiviere/contribution/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class CustomContribAttachmentInline(GenericTabularInline):

@admin.register(models.CustomContribution)
class CustomContributionAdmin(LeafletGeoAdmin, admin.ModelAdmin):
list_display = ("custom_type", "portal", "validated", "date_insert", "date_update")
list_display = ("custom_type", "portal", "validated", "contributed_at", "date_insert", "date_update")
list_filter = ("custom_type", "portal", "validated")
form = forms.CustomContributionForm
inlines = [CustomContribAttachmentInline]
Expand Down

0 comments on commit 74205af

Please sign in to comment.