Repository URL to install this package:
Version:
2.4.1b2 ▾
|
from django import forms
from django.utils.translation import ugettext_lazy as _
class QueryForm(forms.Form):
query_string = forms.CharField(label=_("Search term(s)/phrase"),
help_text=_("Enter the full search string to match. An "
"exact match is required for your Promoted Results to be "
"displayed, wildcards are NOT allowed."),
required=True)