feat(pets): updates pets view
This commit is contained in:
@@ -4,4 +4,8 @@ from app.services.pet_service import PetService
|
||||
|
||||
@bp.route('/')
|
||||
def index():
|
||||
return render_template("pets/index.html", options=PetService.get_options(request))
|
||||
return render_template(
|
||||
"pets/index.html",
|
||||
options=PetService.get_options(request),
|
||||
pagination_result=PetService.get_pets(request)
|
||||
)
|
||||
Reference in New Issue
Block a user