modules/XC/CrispWhiteSkin/templates/web/customer/pager/parts/items_total.twig line 1

Open in your IDE?
  1. {##
  2.  # Products list items total
  3.  #}
  4. {% if this.isItemsPerPageVisible() %}
  5.   <div class="pager-items-total">
  6.     <span class="pager-items-label">{{ this.getPagerLabel() }}: </span>
  7.     <span class="pager-items-range">{{ t('BEGIN - END of TOTAL', {'begin': this.getBeginRecordNumber(), 'end': this.getEndRecordNumber(), 'total': this.getItemsTotal()})|raw }}</span>
  8.     {% if this.isItemsPerPageSelectorVisible() and this.getPerPageCounts() %}
  9.       <div class="per-page-box">
  10.         <div>
  11.           <span class="per-page-label">{{ t('Show:') }}</span>
  12.           <span class="per-page-value">{{ this.getItemsPerPage() }}</span>
  13.         </div>
  14.         <ul class="display-per-page grid-list">
  15.           {% for count in this.getPerPageCounts() %}
  16.             <li class="list-type-grid {% if count == this.getItemsPerPage() %} selected{% endif %}">
  17.               <a data-items-per-page="{{ count }}" href="#">
  18.                 {{ count }}
  19.               </a>
  20.             </li>
  21.           {% endfor %}
  22.         </ul>
  23.       </div>
  24.     {% endif %}
  25.   </div>
  26. {% endif %}