aboutsummaryrefslogtreecommitdiff
path: root/djangopypi/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangopypi/forms.py')
-rw-r--r--djangopypi/forms.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/djangopypi/forms.py b/djangopypi/forms.py
index 6587ef0..6a65d37 100644
--- a/djangopypi/forms.py
+++ b/djangopypi/forms.py
@@ -14,8 +14,4 @@ class ProjectForm(forms.ModelForm):
14class ReleaseForm(forms.ModelForm): 14class ReleaseForm(forms.ModelForm):
15 class Meta: 15 class Meta:
16 model = Release 16 model = Release
17 exclude = ['project'] 17 exclude = ['project'] \ No newline at end of file
18
19class SearchForm(forms.Form):
20 search_value = forms.CharField(max_length=200)
21