{% extends 'base.html' %} {% block title %}clients{% endblock %} {% block style %} th { white-space: nowrap; } {% endblock %} {% block content %} {% if error %}
Whoops! Something went wrong...
{{ error }}
{% else %}
{% if clients %} {% for client in clients %} {% endfor %}
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 }}
{% else %}

Whoops?

This page seems to be empty, because no clients are available. Try to use the server with a compartible client to add it to the database.
{% endif %} {% endif %} {% endblock %}