Skip to content

Commit 4b41139

Browse files
committed
Turn user field on person into a raw field
- Legacy-Id: 3993
1 parent 6afceb8 commit 4b41139

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

ietf/person/admin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class AliasInline(admin.StackedInline):
2222
class PersonAdmin(admin.ModelAdmin):
2323
list_display = ["name", "short", "time", "user", ]
2424
search_fields = ["name", "ascii"]
25+
raw_id_fields = ["user"]
2526
inlines = [ EmailInline, AliasInline, ]
2627
# actions = None
2728
admin.site.register(Person, PersonAdmin)

0 commit comments

Comments
 (0)