ArchiveBox/archivebox/core/forms.py

11 lines
300 B
Python
Raw Normal View History

from django import forms
2020-07-13 16:21:37 +00:00
CHOICES = (
('0', 'depth=0 (archive just this url)'),
('1', 'depth=1 (archive this url and all sites one link away)'),
)
class AddLinkForm(forms.Form):
url = forms.URLField()
2020-07-13 16:21:37 +00:00
depth = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect, initial='0')