From a2f34a764c52ae51035ab5697250b93c970a072e Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Fri, 10 Apr 2009 11:47:53 +0200 Subject: [PATCH] removed ssl settings from admin form, because the key must be kept secret and imho most users won't want to change this anyway --- 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 303ab10..9f5e575 100644 --- a/pyweb/mumble/forms.py +++ b/pyweb/mumble/forms.py @@ -4,6 +4,6 @@ from models import * class MumbleForm( ModelForm ): class Meta: model = Mumble; - exclude = ( 'dbus', 'booted', 'addr', 'port', 'users', 'bwidth', ); + exclude = ( 'dbus', 'booted', 'addr', 'port', 'users', 'bwidth', 'sslcrt', 'sslkey', );