<%- include('partials/favicon') %> 사용자 현황관리 - XAVIS
<%- include('partials/nav', { activeMenu: 'admin-users', adminMode: true }) %>

사용자 현황관리

학습센터

OPS 이메일(@xavis.co.kr) 매직 링크로 로그인에 성공한 사용자 목록입니다. 이메일과 최근 접속일(마지막 로그인 시각)을 표시합니다.

<% if (typeof dbError !== 'undefined' && dbError) { %>

목록을 불러오지 못했습니다: <%= dbError %>

<% } else if (!pgConnected) { %>

PostgreSQL이 비활성화되어 있어 사용자 목록을 조회할 수 없습니다.

<% } else if (!users || users.length === 0) { %>

아직 로그인 기록이 없습니다.

<% } else { %>
<% users.forEach(function (u) { %> <% }); %>
이메일 최근 접속일
<%= u.email %> <% if (u.lastLoginAt) { %> <%= new Date(u.lastLoginAt).toLocaleString('ko-KR', { timeZone: 'Asia/Seoul' }) %> <% } else { %> — <% } %>

총 <%= users.length %>명

<% } %>