<div class="table-responsive">
  <% if (!providers.length) { %> <%- include('../../../includes/notFound.ejs')
  %> <% } else { %>
  <table class="table data-list-view">
    <thead>
      <tr>
        <th></th>
        <th><%= i18n.__({ phrase: 'common.date', locale: lang }) %></th>
        <th><%= i18n.__({ phrase: 'common.name', locale: lang }) %></th>
        <th><%= i18n.__({ phrase: 'common.phone', locale: lang }) %></th>
        <th><%= i18n.__({ phrase: 'common.email', locale: lang }) %></th>
        <th><%= i18n.__({ phrase: 'common.city', locale: lang }) %></th>
        <th><%= i18n.__({ phrase: 'common.village', locale: lang }) %></th>
        <th><%= i18n.__({ phrase: 'common.district', locale: lang }) %></th>
        <th><%= i18n.__({ phrase: 'common.wallet', locale: lang }) %></th>
        <th><%= i18n.__({ phrase: 'common.banStatus', locale: lang }) %></th>
        <th>
          <%= i18n.__({ phrase: 'common.Activation', locale: lang }) %>
        </th>
        <th>
          <%= i18n.__({phrase: 'providers.acceptRequest', locale: lang}) %>
        </th>
        <th>
          <%= i18n.__({phrase: 'providers.rejectRequest', locale: lang}) %>
        </th>
        <th><%= i18n.__({ phrase: 'common.control', locale: lang }) %></th>
      </tr>
    </thead>

    <tbody id="filteredDataContainer">
      <%- include('./tds.ejs', { providers }) %>
    </tbody>
  </table>
  <%}%>
</div>
