Add explicit access_types from the url
This does two things, it reduces the amount of repeated data (e.g.,
the checkAccess used to repeat the access_type that was already
specified in the url). At the same time, it allows for example the
'create' page to push its access_type to 'edit'.
Patch by: Sverre Rabbelier
{% ifnotequal prev_start -1 %}<a href="{{ start_base_url }}&start={{ prev_start }}">‹ Previous</a>{% endifnotequal %}
{% for page in pages %}
<a {% ifequal page.number current_page %} class="ae-page-selected ae-page-number" {% endifequal %}
href="{{ start_base_url }}&start={{ page.start }}">{{ page.number }}</a>
{% endfor %}
{% ifnotequal next_start -1 %}<a href="{{ start_base_url }}&start={{ next_start }}">Next ›</a>{% endifnotequal %}