We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 437418e commit 9b7c18dCopy full SHA for 9b7c18d
1 file changed
ietf/person/admin.py
@@ -27,6 +27,8 @@ def plain_name(self, obj):
27
prefix, first, middle, last, suffix = name_parts(obj.name)
28
return "%s %s" % (first, last)
29
list_display = ["name", "short", "plain_name", "time", "user", ]
30
+ fields = ("user", "time", "name", "name_from_draft", "ascii", "ascii_short", "biography", "photo", "photo_thumb", "consent",)
31
+ readonly_fields = ("name_from_draft", )
32
search_fields = ["name", "ascii"]
33
raw_id_fields = ["user"]
34
inlines = [ EmailInline, AliasInline, ]
0 commit comments