{% extends "base.html" %} {% block title %}LASSO — Profiles{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if profiles %}
{% for p in profiles %}
{{ p.name }} {% if p.name in ('minimal', 'strict', 'bank-analysis', 'offline') %} Strict {% elif p.name == 'development' %} Standard {% else %} {{ p.source }} {% endif %}
{% if p.description %}

{{ p.description }}

{% endif %}
Commands {% if p.cmd_mode == 'whitelist' %}allowed list{% elif p.cmd_mode == 'blacklist' %}blocked list{% else %}{{ p.cmd_mode }}{% endif %} Network {% if p.net_mode == 'none' %}offline{% elif p.net_mode == 'restricted' %}limited{% else %}{{ p.net_mode }}{% endif %} Memory {{ p.mem_limit }}
{% if p.tags %}
{% for tag in p.tags %} {{ tag }} {% endfor %}
{% endif %}
{% if p.source == 'builtin' %} Duplicate & Edit {% else %} Edit {% endif %}
{% endfor %}
{% else %}

No profiles found

Create a profile using the CLI:
lasso profile save my-profile --from minimal

{% endif %} {% endblock %}