Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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)