{% extends "base.html" %} {% load partials static %} {% block content %}
{% if messages %} {% for message in messages %} {% if forloop.last %} {# Only show the last message #}
{% if message.tags == 'success' %} {% elif message.tags == 'error' %} {% else %} {% endif %} {{ message }}
{% endif %} {% endfor %} {% endif %}
{% include "includes/header.html" %}
Total Bentos
{{ bento_boxes|length }}
Total Plugins
{{ plugins|length }}
Total Apps
{{ apps|length }}
Total Files
{{ total_files }}
Total Embeddings
{{ total_embeddings }}

Bento Boxes

{% if bento_boxes %} {% for b in bento_boxes %}
Bento

{{ b.bento_box.namespace|title }} {% if b.ack %}
Active
{% else %}
Inactive
{% endif %}

{{ b.client_id }}
v{{ b.version }}
Last seen {{ b.last_seen|timesince }} ago
{% if b.bento_box.query_handlers %} Query {% endif %} {% if b.bento_box.stream_handlers %} Stream {% endif %} {% if b.bento_box.storage_handlers %} Storage {% endif %} {% if b.bento_box.embed_handlers %} Embed {% endif %} {% if b.bento_box.agent_handlers %} Agent {% endif %}
{% comment %} {% endcomment %}
{% endfor %} {% else %}

No bentos

Get started by installing some bentos

{% endif %}

Global Plugins

{% if plugins %} {% for plugin in plugins %}
Plugin thumbnail

{{ plugin.name }}

{{ plugin.description }}

{% endfor %} {% else %}

No plugins

Get started by installing some plugins

{% endif %}

Apps

{% if apps %} {% for app in apps %}
App thumbnail

{{ app.name }}

{{ app.description }}

{% endfor %} {% else %}

No apps

Get started by installing some apps

{% endif %}
{% endblock %}