Whoops! Something went wrong...
{{ error }}
{% extends 'base.html' %} {% block title %}clients{% endblock %} {% block style %} th { white-space: nowrap; } {% endblock %} {% block content %} {% if error %}
{% else %}Client ID | Machine Name | Application ID | SKU ID | License Status | Last Seen | KMS EPID | Seen Count |
---|---|---|---|---|---|---|---|
{{ client.clientMachineId }} |
{% if client.machineName | length > 16 %} {{ client.machineName | truncate(16, True, '...') }} {% else %} {{ client.machineName }} {% endif %} | {{ client.applicationId }} | {{ client.skuId }} | {{ client.licenseStatus }} | {{ client.lastRequestTime }} | {% if client.kmsEpid | length > 16 %} {{ client.kmsEpid | truncate(16, True, '...') }} {% else %} {{ client.kmsEpid }} {% endif %} | {{ client.requestCount }} |