opusthres=forms.IntegerField(required=False,initial=100,help_text=_("Force Opus-Codec if this percentage of clients support it. Enter without % character."))
reghostname=forms.CharField(required=False,help_text=_("Server hostname (domain name) that is used to connect to the server from the server list. This must be a A or AAAA record."))
regpasswd=forms.CharField(required=False,help_text=_("Password used to register the server in the server list"))
regloc=forms.CharField(required=False,help_text=_("Location of the server as ISO_3166-1 country code. In order to work you must have a strong server certificate. Additionally the C= field of the used server certificate must have the same country code OR the used tld in registerhostname must contain the same location code FIXME schoen machen."))
allowping=forms.BooleanField(required=False,initial=True,help_text=_("Allow ping packets from the server (to show usercount and slots in the server browser). This must not be disabled if the server should be listed in the serverlist."))
sendversion=forms.BooleanField(required=False,initial=True,help_text=_("Allow server to send system version to the client."))
def__init__(self,*args,**kwargs):
def__init__(self,*args,**kwargs):
PropertyModelForm.__init__(self,*args,**kwargs)
PropertyModelForm.__init__(self,*args,**kwargs)
@ -159,13 +168,17 @@ class MumbleAdminForm( MumbleForm ):