{% extends "base.html" %} {% load partials static %} {% block content %}
{% include "includes/header.html" %}
Total Bentos
{{ bento|length }}
Total Plugins
{{ plugins|length }}
Total Apps
{{ apps|length }}
Total Files
{{ total_files }}
Total Embeddings
{{ total_embeddings }}

Bento Boxes {% if selected_bento %} {% if module_type == "bento" %} {{ selected_bento.name }} {% else %} {{ selected_bento.name }} (inactive) {% endif %} {% endif %}

{% if module_type != "bento" %}
Dynamic Bento Boxes: {{ module_type }}
{% endif %}
{% if bento %} {% for b in bento %}
Bento

{{ b.name }} {% if selected_bento and b.name == selected_bento.name %} {% if module_type == "bento" %}
Active
{% else %}
Inactive
{% endif %} {% endif %}

{{ b.description }}

{% endfor %} {% else %}

No bentos

Get started by creating some bentos

{% endif %}

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 %}