{% extends "interface/smart/admin-client/base.html.twig" %} {% block title %}{{ "Client Registrations"|xlt }}{% endblock %} {% block contents %}
{% if clients|length <= 0 %} {% endif %} {% for clientNavigationRecord in clients %} {% endfor %}
{{ "Edit"|xlt }} {{ "Client Name / Client ID"|xlt }} {{ "Enabled"|xlt }} {{ "Client Type"|xlt }} {{ "DSI Type"|xlt }} {{ "Scopes Requested"|xlt }}
{{ "There are no clients registered in the system"|xlt }}
{{ "Edit"|xlt }} {{ clientNavigationRecord.client.name|text }}
{{ clientNavigationRecord.client.identifier|text }}
{{ clientNavigationRecord.client.isEnabled() ? "Enabled"|xlt : "Disabled"|xlt }} {{ clientNavigationRecord.client.isConfidential() ? "Confidential"|xlt : "Public"|xlt }} {% if clientNavigationRecord.client.hasDSI() %} {{ clientNavigationRecord.client.hasPredictiveDSI() ? "Predictive DSI"|xlt : "Evidence DSI"|xlt }} {% else %} {{ "No DSI Services"|xlt }} {% endif %} {% if clientNavigationRecord.scopeCount <= 0 %} {{ "No Scopes"|xlt }} {% else %}
    {% for scope in clientNavigationRecord.scopes %}
  • {{ scope|text }}
  • {% endfor %} {% if clientNavigationRecord.hasMoreScopes %}
  • {{ clientNavigationRecord.moreScopeCount }} {{ "additional scopes..."|xlt }}
  • {% endif %}
{% endif %}
{% endblock %}