{% extends "base.html" %} {% block title %}Players{% endblock %} {% block page_title %}Players{% endblock %} {% block content %}
{% if search %}Reset{% endif %}
{{ total }} players found
{% for p in players %} {% else %} {% endfor %}
PlayerIPFirst SeenLast SeenPlaytimeOP
{{ p.username }} {{ p.ip_address or '—' }} {{ p.first_seen | fmt_dt }} {{ p.last_seen | fmt_dt }} {{ p.total_playtime_sec | fmt_duration }} {% if p.is_op %} OP {% else %}{% endif %}
No players found
{% include "_pagination.html" %} {% endblock %}