7 lines
222 B
Python
7 lines
222 B
Python
from django import forms
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class SearchForm(forms.Form):
|
|
template_name = "search/search_form.html"
|
|
search = forms.CharField(label=_("Search"), max_length=128)
|