Added search app
This commit is contained in:
7
apps/dynamic_search/forms.py
Normal file
7
apps/dynamic_search/forms.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from django import forms
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class SearchForm(forms.Form):
|
||||
q = forms.CharField(max_length=128, label=_(u'Search term'))
|
||||
|
||||
Reference in New Issue
Block a user