SHARE
TWEET
Untitled
a guest
Jun 30th, 2014
203
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- class BlockForm(forms.Form):
- name = forms.CharField(max_length = 256, widget=forms.TextInput(attrs={'placeholder': 'Block Name', 'class': 'form-control'}))
- network = forms.GenericIPAddressField(widget=forms.TextInput(attrs={'placeholder': '10.0.0.0', 'class': 'form-control'}))
- mask = forms.GenericIPAddressField(widget=forms.TextInput(attrs={'placeholder': '255.0.0.0', 'class': 'form-control'}))
- owner = forms.ChoiceField(choices = self.ownerList)
- def __init__(self):
- self.ownerList = Admin.objects.all().values_list('owner')
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
