<%= it.SimpleBreadcrumb("Profile Explorer") %>
<%= it.Button({ label: "Search", variant: "primary", icon: "search" , id: "btn-search" }) %>
PROFILE
KEYWORD
<% if (it.datalist && Array.isArray(it.datalist)) { %> <% it.datalist.forEach((user, index) => { %>
<%= index + 1 %>
<%= user["profile_explore.lastupdate_time"] %> <% if (user["profile_explore.user_property"] && user["profile_explore.user_property"].length) { %> <% user["profile_explore.user_property"].forEach((prop, i) => { %> <% if (prop.key === "facebook") { %> <%= prop.value %> <% } %> <% if (prop.key === "line_name") { %> Line <%= prop.value %> <% } %> <% if (prop.key === "line") { %> Line <%= prop.value %> <% } %> <% if (prop.key === "phoneNumber") { %> <%= prop.value.join(", ") %> <% } %> <% }) %> <% } %>
<% if (user["profile_explore.keywords_string"] && user["profile_explore.keywords_string"].length) { %> <% const keywords = user["profile_explore.keywords_string"].split(","); %> <% for (let i = 0; i < keywords.length; i++) { %> <%= keywords[i] %> <% } %> <% } %>
<% }) %> <% } %>