widgets.py 158 B

1234567
  1. from django import forms
  2. class YesNoSwitch(forms.CheckboxInput):
  3. """
  4. Custom Yes-No switch as fancier alternative to checkboxes
  5. """
  6. pass