daily pastebin goal
82%
SHARE
TWEET

Untitled

a guest Jun 30th, 2014 203 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class BlockForm(forms.Form):
  2.     name = forms.CharField(max_length = 256, widget=forms.TextInput(attrs={'placeholder': 'Block Name', 'class': 'form-control'}))
  3.     network = forms.GenericIPAddressField(widget=forms.TextInput(attrs={'placeholder': '10.0.0.0', 'class': 'form-control'}))
  4.     mask = forms.GenericIPAddressField(widget=forms.TextInput(attrs={'placeholder': '255.0.0.0', 'class': 'form-control'}))
  5.     owner = forms.ChoiceField(choices = self.ownerList)
  6.    
  7.     def __init__(self):
  8.         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. OK, I Understand
 
Top