mirror of
https://github.com/wagtail/wagtail.git
synced 2024-12-01 11:41:20 +01:00
Merge pull request #1573 from kaedroho/fix-editorspicks-references
Fixed a couple of references to editors picks
This commit is contained in:
commit
de78b8d609
@ -46,7 +46,7 @@ def index(request):
|
||||
'is_searching': is_searching,
|
||||
'queries': queries,
|
||||
'query_string': query_string,
|
||||
'search_form': SearchForm(data=dict(q=query_string) if query_string else None, placeholder=_("Search editor's picks")),
|
||||
'search_form': SearchForm(data=dict(q=query_string) if query_string else None, placeholder=_("Search promoted results")),
|
||||
})
|
||||
|
||||
|
||||
|
@ -5,6 +5,6 @@ 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 Editors Picks to be "
|
||||
"exact match is required for your Promoted Results to be "
|
||||
"displayed, wildcards are NOT allowed."),
|
||||
required=True)
|
||||
|
Loading…
Reference in New Issue
Block a user