SIDEBAR SKINS
HEADER SKINS
<%- include('../partials/sidebar.ejs') %>
| # |
Name |
Username |
Shop |
Operator Type |
Mobile |
Email |
Status |
Actions |
<% for(let i=0; i < userList.length; i++) { %>
| <%= 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'); %>