kopia lustrzana https://github.com/wagtail/wagtail
Cleaned up redirects index view
rodzic
21abfe9742
commit
12823433e3
|
@ -1,6 +1,6 @@
|
|||
{% load i18n %}
|
||||
{% if redirects %}
|
||||
{% if is_searching %}
|
||||
{% if query_string %}
|
||||
<h2>
|
||||
{% blocktrans count counter=redirects|length %}
|
||||
There is one match
|
||||
|
@ -12,9 +12,9 @@
|
|||
|
||||
{% include "wagtailredirects/list.html" %}
|
||||
|
||||
{% include "wagtailadmin/shared/pagination_nav.html" with items=redirects is_searching=is_searching linkurl="wagtailredirects_index" %}
|
||||
{% include "wagtailadmin/shared/pagination_nav.html" with items=redirects is_searching=query_string linkurl="wagtailredirects_index" %}
|
||||
{% else %}
|
||||
{% if is_searching %}
|
||||
{% if query_string %}
|
||||
<p>{% blocktrans %}Sorry, no redirects match "<em>{{ query_string }}</em>"{% endblocktrans %}
|
||||
{% else %}
|
||||
{% url 'wagtailredirects_add_redirect' as wagtailredirects_add_redirect_url %}
|
||||
|
|
|
@ -15,36 +15,27 @@ REDIRECT_EDIT_HANDLER = ObjectList(models.Redirect.content_panels)
|
|||
|
||||
@permission_required('wagtailredirects.change_redirect')
|
||||
def index(request):
|
||||
p = request.GET.get("p", 1)
|
||||
q = None
|
||||
is_searching = False
|
||||
page = request.GET.get('p', 1)
|
||||
query_string = request.GET.get('q', "")
|
||||
ordering = request.GET.get('ordering', 'old_path')
|
||||
|
||||
if 'q' in request.GET:
|
||||
form = SearchForm(request.GET, placeholder=_("Search redirects"))
|
||||
if form.is_valid():
|
||||
q = form.cleaned_data['q']
|
||||
is_searching = True
|
||||
|
||||
redirects = models.Redirect.get_for_site(site=request.site).prefetch_related('redirect_page').filter(old_path__icontains=q)
|
||||
|
||||
if not is_searching:
|
||||
# Get redirects
|
||||
redirects = models.Redirect.get_for_site(site=request.site).prefetch_related('redirect_page')
|
||||
form = SearchForm(placeholder=_("Search redirects"))
|
||||
|
||||
if 'ordering' in request.GET:
|
||||
ordering = request.GET['ordering']
|
||||
# Search
|
||||
if query_string:
|
||||
redirects = redirects.filter(old_path__icontains=query_string)
|
||||
|
||||
if ordering in ['old_path', ]:
|
||||
if ordering != 'old_path':
|
||||
redirects = redirects.order_by(ordering)
|
||||
else:
|
||||
# Ordering (A bit useless at the moment as only 'old_path' is allowed)
|
||||
if ordering not in ['old_path']:
|
||||
ordering = 'old_path'
|
||||
|
||||
paginator = Paginator(redirects, 20)
|
||||
if ordering != 'old_path':
|
||||
redirects = redirects.order_by(ordering)
|
||||
|
||||
# Pagination
|
||||
paginator = Paginator(redirects, 20)
|
||||
try:
|
||||
redirects = paginator.page(p)
|
||||
redirects = paginator.page(page)
|
||||
except PageNotAnInteger:
|
||||
redirects = paginator.page(1)
|
||||
except EmptyPage:
|
||||
|
@ -55,15 +46,14 @@ def index(request):
|
|||
return render(request, "wagtailredirects/results.html", {
|
||||
'ordering': ordering,
|
||||
'redirects': redirects,
|
||||
'is_searching': is_searching,
|
||||
'query_string': q,
|
||||
'query_string': query_string,
|
||||
})
|
||||
else:
|
||||
return render(request, "wagtailredirects/index.html", {
|
||||
'ordering': ordering,
|
||||
'search_form': form,
|
||||
'redirects': redirects,
|
||||
'is_searching': is_searching,
|
||||
'query_string': query_string,
|
||||
'search_form': SearchForm(data=dict(q=query_string) if query_string else None, placeholder=_("Search redirects")),
|
||||
})
|
||||
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue