<%- include('../partials/header.ejs'); %>
<%- include ('../partials/nav.ejs') %>

SIDEBAR SKINS

HEADER SKINS

<%- include('../partials/sidebar.ejs') %>

Users List

<% for(let i=0; i < userList.length; i++) { %> <% } %>
# Name Username Shop Operator Type Mobile Email Status Actions
<%= i+1 %> <%= userList[i].name %> <%= userList[i].user_id %> <%= userList[i].shop_name %> <%= userList[i].roleTitle %> <%= userList[i].phone %> <%= userList[i].email %> <% if(userList[i].status==1){ %> Active <% } else if (userList[i].status==2) { %> Disable <% } else { %> Delete <% } %> <% if(loginUserRole == 1){ %> <% if(userList[i].status !== 0){ %> Edit Change Status Reset Password Delete User <% } %> <% } %>
<%- include ('../partials/footer.ejs'); %>
<%- include('../partials/footer_js.ejs'); %>