{% extends "base.html" %} {% block content %}
Whether this device is licensed, and when it last reached vendorawifi.com.
Register this SBC at vendorawifi.com and allocate a credit to activate it.
You can open it straight from this hotspot — no voucher needed (the activation site is in
the walled garden).
Device ID:
{{ data.vnd_id }}
| VND-ID |
{% if data.vnd_id %}
{{ data.vnd_id }}
{% else %}
— not yet generated
{% endif %}
|
|---|
| Last successful contact |
{% if data.last_contact_at %}
{{ data.last_contact_at }}
({{ (data.last_contact_age_s // 60) | duration }} ago)
{% else %}
never
{% endif %}
|
|---|---|
| Last attempt |
{% if data.last_attempt_at %}
{{ data.last_attempt_at }}
({{ (data.last_attempt_age_s // 60) | duration }} ago)
{% else %}
never
{% endif %}
|
| Last error |
{% if data.last_error %}
{{ data.last_error }}
{% else %}
—
{% endif %}
|