| ID | 아이디 | 생성일 | 활성 상태 | 로그인 횟수 |
|---|---|---|---|---|
| {{ user.id }} | {{ user.username }} | {{ user.created_at.strftime('%Y-%m-%d %H:%M') }} | {% if user.is_active %} 활성 {% else %} 비활성 {% endif %} | {{ user.login_logs|selectattr('success')|list|length }}회 |
| 시간 | 사용자 | IP 주소 | User Agent | 결과 |
|---|---|---|---|---|
| {{ log.login_time.strftime('%Y-%m-%d %H:%M:%S') }} | {{ log.user.username }} | {{ log.ip_address }} |
{{ log.user_agent[:50] }}{% if log.user_agent|length > 50 %}...{% endif %} | {% if log.success %} 성공 {% else %} 실패 {% endif %} |