{% extends "base.html" %} {% block title %}Apps — Hassette{% endblock %} {% block content %}

App Management

{% if manifest_snapshot.total == 0 %}

No apps are configured. Add apps to your Hassette configuration to see them here.

{% else %}
{{ manifest_snapshot.running }} running
{% if manifest_snapshot.failed > 0 %}
{{ manifest_snapshot.failed }} failed
{% endif %} {% if manifest_snapshot.stopped > 0 %}
{{ manifest_snapshot.stopped }} stopped
{% endif %} {% if manifest_snapshot.disabled > 0 %}
{{ manifest_snapshot.disabled }} disabled
{% endif %} {% if manifest_snapshot.blocked > 0 %}
{{ manifest_snapshot.blocked }} blocked
{% endif %}
{% set manifests = manifest_snapshot.manifests %} {% include "partials/manifest_list.html" %}
App Key Name Class Status Error Actions
{% endif %} {% endblock %}