I use KnpPaginatorBundle to manage pagination in the backoffice of my site and it works well
I configured it to use a custom templates
knp_paginator:
template:
pagination: MyappMainBundle::pagination.html.twig
Then, I want to use the same bundle in the frontoffice but with different html structure. So, my question is : Is it possible to have two templates for the pagination? One for the backoffice and One for the frontoffice.
Thanks in advance for your answer.