<div class="table-responsive">
    <% if (!roles.length){%>
        <%- include('../../includes/notFound.ejs') %>
    <%}else{%>
        <table class="table data-list-view">
            <thead>
            <tr>
                <%- include('../includes/checkAll.ejs') %>

                <th>#</th>
                <th><%= i18n.__('name') %></th>
                <th> <%= i18n.__('control') %> </th>
            </tr>
            </thead>
            <tbody id="filteredDataContainer">
                <%- include('./tds.ejs', { roles }) %>
            </tbody>
        </table>
    <%}%>
</div>