Preserve search results after adding a book

This commit is contained in:
Mouse Reeve
2021-04-26 07:24:03 -07:00
parent ef83eb33b0
commit 0cb80aeb55
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,6 @@
""" book list views"""
from typing import Optional
from urllib.parse import urlencode
from django.contrib.auth.decorators import login_required
from django.core.paginator import Paginator
@ -9,6 +10,7 @@ from django.db.models.functions import Coalesce
from django.http import HttpResponseNotFound, HttpResponseBadRequest, HttpResponse
from django.shortcuts import get_object_or_404, redirect
from django.template.response import TemplateResponse
from django.urls import reverse
from django.utils.decorators import method_decorator
from django.views import View
from django.views.decorators.http import require_POST
@ -263,7 +265,8 @@ def add_book(request):
# if the book is already on the list, don't flip out
pass
return redirect("list", book_list.id)
path = reverse('list', args=[book_list.id])
return redirect("{:s}?{:s}".format(path, urlencode(request.GET)))
@require_POST