{% extends "base.html" %} {% load partials static %} {% block content %}
{% if not bento_clients %}

No Bento Clients Registered

No bento clients have been registered in this deployment

{% else %}

Bento Labels

View available labels and handlers for all registered Bento clients

{% for client in bento_clients %}

{{ client.bento_box.namespace|title }}

{{ client.client_id }}
v{{ client.version }} {% if client.ack %}
Active
{% else %}
Inactive
{% endif %}

Query Handlers

{% for handler in client.bento_box.query_handlers %}
{{ handler }}
{% empty %}

No query handlers configured

{% endfor %}

Agent Handlers

{% for handler in client.bento_box.agent_handlers %}
{{ handler }}
{% empty %}

No agent handlers configured

{% endfor %}

Embed Handlers

{% for handler in client.bento_box.embed_handlers %}
{{ handler }}
{% empty %}

No embed handlers configured

{% endfor %}

Storage Handlers

{% for handler in client.bento_box.storage_handlers %}
{{ handler }}
{% empty %}

No storage handlers configured

{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}