{##
# Products list items total
#}
{% if this.isItemsPerPageVisible() %}
<div class="pager-items-total">
<span class="pager-items-label">{{ this.getPagerLabel() }}: </span>
<span class="pager-items-range">{{ t('BEGIN - END of TOTAL', {'begin': this.getBeginRecordNumber(), 'end': this.getEndRecordNumber(), 'total': this.getItemsTotal()})|raw }}</span>
{% if this.isItemsPerPageSelectorVisible() and this.getPerPageCounts() %}
<div class="per-page-box">
<div>
<span class="per-page-label">{{ t('Show:') }}</span>
<span class="per-page-value">{{ this.getItemsPerPage() }}</span>
</div>
<ul class="display-per-page grid-list">
{% for count in this.getPerPageCounts() %}
<li class="list-type-grid {% if count == this.getItemsPerPage() %} selected{% endif %}">
<a data-items-per-page="{{ count }}" href="#">
{{ count }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
</div>
{% endif %}