Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
348 B

# -*- coding: utf-8 -*-
from django.forms import ModelForm
from models import *
class MumbleForm( ModelForm ):
class Meta:
model = Mumble;
exclude = ( 'dbus', 'booted', 'addr', 'port', 'users', 'bwidth', 'sslcrt', 'sslkey', );
class MumbleUserForm( ModelForm ):
class Meta:
model = MumbleUser;
fields = ( 'name', 'password' );