Skip to content

Commit

Permalink
Merge pull request #715 from yychen/admin-remote-field
Browse files Browse the repository at this point in the history
Add remote field in admin
  • Loading branch information
yychen authored Mar 24, 2020
2 parents 57a4b1a + d1bf6df commit 56f296d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/proposals/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class AdditionalSpeakerInline(GenericTabularInline):
class ProposalAdmin(admin.ModelAdmin):
list_display = [
'title', 'category', 'duration', 'language',
'python_level', 'accepted',
'python_level', 'remoting_policy', 'accepted',
]
list_filter = [
'cancelled', 'accepted',
Expand All @@ -28,7 +28,7 @@ class ProposalAdmin(admin.ModelAdmin):
'conference', 'submitter', 'title', 'category', 'duration',
'language', 'abstract', 'python_level', 'objective',
'detailed_description', 'outline', 'supplementary',
'recording_policy', 'slide_link', 'referring_policy', 'cancelled',
'recording_policy', 'slide_link', 'referring_policy', 'remoting_policy', 'cancelled',
'accepted', 'slido_embed_link',
]
raw_id_fields = ['submitter']
Expand Down

0 comments on commit 56f296d

Please sign in to comment.