Trees | Indices | Help |
|
---|
|
1 from django.forms.widgets import RadioSelect, RadioInput, RadioFieldRenderer 2 from django.utils.encoding import force_unicode 35 """ 6 An object used by RadioFieldRenderer that represents a single 7 <input type='radio'>. 8 """ 91719 """ 20 An object used by RadioSelect to enable customization of radio widgets. 21 """ 223024 for i, choice in enumerate(self.choices): 25 yield DefaultGroupRadioInput(self.name, self.value, self.attrs.copy(), choice, i)2628 choice = self.choices[idx] # Let the IndexError propogate 29 return DefaultGroupRadioInput(self.name, self.value, self.attrs.copy(), choice, idx)32 renderer = DefaultGroupRadioFieldRenderer33
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Oct 18 13:29:23 2011 | http://epydoc.sourceforge.net |