- Issue created by @sgorneau
- Status changed to Fixed
over 1 year ago 3:33pm 1 March 2023 Thank you for asking this.
I was thinking someone would ask it someday.
Placement of the navigation is up to you - up to the front end integration.
The navigation is actually the pager of the View -
{{ pager }}
inviews-view.html.twig
.We have a template suggestion available for you to override the View template to place the pager whereever you need.
You should be able to override the View template with a Twig named something like this:
views-view--style--calendar.html.twig
... {# Navigation above calendar #} {{ pager }} {% if rows -%} {# Rows = the calendar table #} {{ rows }} {% elseif empty -%} {{ empty }} {% endif %} ...
I hope you manage to do this change easily!
Thanks again for using this module.
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
over 1 year ago 4:08pm 15 March 2023 - πΊπΈUnited States sgorneau
OK, no problem. I was used to D7 where pagers could be placed before, after, or both through the View configuration. The template override worked just fine.