6 lines
86 B
Python
6 lines
86 B
Python
from django import forms
|
|
|
|
|
|
class SearchForm(forms.Form):
|
|
text = forms.CharField()
|