From 9296c12724bff8c9d9710fa498e0a92c23a7cbbd Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Sun, 7 Oct 2012 15:11:16 +0200 Subject: [PATCH] include display address field in the server admin form --- pyweb/mumble/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyweb/mumble/forms.py b/pyweb/mumble/forms.py index 8958274..59aa53f 100644 --- a/pyweb/mumble/forms.py +++ b/pyweb/mumble/forms.py @@ -160,7 +160,7 @@ class MumbleForm( PropertyModelForm ): class Meta: model = Mumble - fields = ['name'] + fields = ['name', 'display'] def EXT_authorize( self, request, action ): return self.instance.isUserAdmin( request.user )