forms.py 300 B

12345678910
  1. from django import forms
  2. CHOICES = (
  3. ('0', 'depth=0 (archive just this url)'),
  4. ('1', 'depth=1 (archive this url and all sites one link away)'),
  5. )
  6. class AddLinkForm(forms.Form):
  7. url = forms.URLField()
  8. depth = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect, initial='0')