- kukicha
{{ app_version }}
- Status
{{ browser_login.status }}
{% if browser_login.active %}
- Signed in as
{{ browser_login.username }}
- User Agent
{{ browser_login.user_agent }}
- Client IP
{{ browser_login.client_ip }}
- Expires
-
({{ browser_login.expires_in }} left)
{% endif %}
{% if not opensubsonic_configured %}
OpenSubsonic is not configured.
{% elif not opensubsonic_clients %}
No OpenSubsonic clients seen yet.
{% else %}
| Client |
Last Seen |
{% for client in opensubsonic_clients %}
{{ client.client_name }} |
|
{% endfor %}
{% endif %}
- Status
- {{ config_summary.status }}
- Path
{{ config_summary.path }}
{% if config_summary.error %}
{{ config_summary.error }}
{% else %}
| Key |
Current Value |
Source |
{% for item in config_summary.values %}
{{ item.key }} |
{% if item.items %}
{% for value in item.items %}
{{ value }}
{% endfor %}
{% else %}
{{ item.value }}
{% endif %}
|
{{ item.source }} |
{% endfor %}
{% endif %}