{% extends "base.html" %} {% block title %}LASSO Dashboard — Sandboxes{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if has_sandboxes %}

Your Sandboxes

{{ stats.total }} sandboxes
{{ stats.running }} running
{% if stats.errors > 0 %}
{{ stats.errors }} errors
{% endif %}
{{ stats.total_execs }} commands run
{% if stats.total_blocked > 0 %}
{{ stats.total_blocked }} actions blocked
{% endif %}
{% include "partials/sandbox_cards.html" %}
{% else %} {% include "partials/create_form.html" %} {% endif %} {% endblock %}