aboutsummaryrefslogtreecommitdiff
path: root/djangopypi/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangopypi/forms.py')
-rw-r--r--djangopypi/forms.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/djangopypi/forms.py b/djangopypi/forms.py
index 5484747..6587ef0 100644
--- a/djangopypi/forms.py
+++ b/djangopypi/forms.py
@@ -15,4 +15,7 @@ class ReleaseForm(forms.ModelForm):
15 class Meta: 15 class Meta:
16 model = Release 16 model = Release
17 exclude = ['project'] 17 exclude = ['project']
18
19class SearchForm(forms.Form):
20 search_value = forms.CharField(max_length=200)
18 21