{% extends "base.html" %} {% set active = "execute" %} {% block head %} {% endblock %} {% block content %}

Tool Executor

{% if file_tools %}

Saved Tools

{% for t in file_tools %} {% endfor %}
Name Size Actions
{{ t.name }} {{ (t.size / 1024)|round(1) }} KB
{% else %}

No saved tools found.

Go to Pipeline
{% endif %} {% if tools %}

Database Tools

{% for t in tools %} {% endfor %}
ID Name Description Status
{{ t.id }} {{ t.name }} {{ t.description[:60] }}{% if t.description|length > 60 %}...{% endif %} {{ t.status }}
{% endif %}

Sandbox Runner

{% endblock %}