% if (!_.isMobile()) { %>
<%= _.__('oro.datagrid.pagination.label') %>:
<% } %>
<% _.each(handles, function (handle) { %>
<% if (handle.type == "input") { %>
disabled<% } %>
data-grid-pagination-trigger-input aria-label="<%- _.__('oro.datagrid.pagination.input-aria') %>"
>
<% } else { %>
<%
var buttonClassNames = _.isDesktop() ? 'btn btn-icon btn-light pagination-trigger ' : 'btn btn-icon pagination-trigger ';
buttonClassNames += handle.className ? handle.className : '';
buttonClassNames += disabled ? ' disabled': '';
%>
<% } %>
<% }); %>
<% if (!_.isMobile()) { %>
<%- _.__('oro.datagrid.pagination.totalPages', {totalPages: state.totalPages || 1}) %>
<%- _.__('oro.datagrid.pagination.totalRecords', {totalRecords: state.totalRecords}) %>
<% } %>