{% 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 %}
|
{{ (p.last_seen or '—')[:19] }} |
{{ (p.last_pushed or '—')[:19] }} |
{{ (p.status_last_updated or '—')[:19] }} |
{{ 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 %}