{% for p in players %}
| {{ p.id }} |
{{ p.name }} |
{{ p.hostname or '—' }} |
{{ p.workspace_name or '—' }} |
{{ p.player_type or '—' }} |
{% if p.online %}
● Online
{% else %}
● Offline
{% endif %}
|
{% if p.last_seen %}{{ p.last_seen[:19] }}{% else %}—{% endif %} |
{% if p.last_pushed %}{{ p.last_pushed[:19] }}{% else %}—{% endif %} |
{% if p.status_last_updated %}{{ p.status_last_updated[:19] }}{% else %}—{% endif %} |
{{ p.screen_resolution or '—' }} |
{{ p.hardware_version or '—' }} |
{{ p.last_ip_address or '—' }} |
{{ p.eth0_ip or '—' }} |
{% if p.updating %}Yes{% else %}No{% endif %} |
{% if p.registered %}✓{% else %}✗{% endif %} |
{% endfor %}