Skip to content
Snippets Groups Projects
Commit 9e8d4787 authored by Roang's avatar Roang
Browse files

Merge branch 'fix/order-admin' into 'develop'

Add participant order field to the Event admin

See merge request hub/hub!1094
parents b052ba01 978440c6
No related branches found
No related tags found
No related merge requests found
...@@ -603,7 +603,7 @@ class EventAttachmentInline(admin.TabularInline): ...@@ -603,7 +603,7 @@ class EventAttachmentInline(admin.TabularInline):
class EventParticipantInline(admin.TabularInline): class EventParticipantInline(admin.TabularInline):
model = EventParticipant model = EventParticipant
fields = ['participant', 'role', 'is_accepted', 'is_public'] fields = ['participant', 'role', 'is_accepted', 'is_public', 'order']
extra = 1 extra = 1
raw_id_fields = ['participant'] raw_id_fields = ['participant']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment