<div class="table-responsive">
    <% if (!brands.length){%>
        <%- include('../includes/notFound.ejs') %>
    <%}else{%>
        <table class="table data-list-view">
            <thead>
            <tr>
                <%- include('../includes/checkAll.ejs') %>
                <th><%= i18n.__('common.date') %></th>
                <th> <%= i18n.__('common.image') %> </th>
                <th> <%= i18n.__('common.name') %> </th>
                <th> <%= i18n.__('payments.status') %> </th>
                <th>  <%= i18n.__('common.actions') %> </th>
            </tr>
            </thead>
            <tbody id="filteredDataContainer">
                <%- include('./tds.ejs', { brands }) %>
            </tbody>
        </table>
    <%}%>
</div>