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

                            </th>
                            <th>
                                <%= i18n.__('common.date') %>
                            </th>
                            <th>
                                <%= i18n.__('services.image') %>
                            </th>
                            <th>
                                <%= i18n.__('common.name') %>
                            </th>
                            <th>
                                <%= i18n.__('services.price') %>
                            </th>
                            <th>
                                <%= i18n.__('common.departments') %>
                            </th>
                            <th>
                                <%= i18n.__('common.control') %>
                            </th>
                    </thead>
                    <tbody id="filteredDataContainer">
                        <%- include('./tds.ejs', { services }) %>
                    </tbody>
                </table>
                <div class="d-flex justify-content-center mt-3">
                    <nav aria-label="Page navigation example">
                        <%-paginationHtml%>
                    </nav>

                </div>
                <%}%>
</div>