{% extends "base.html" %} {% block title %}LASSO — Profiles{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if profiles %}
{% for p in profiles %}
{{ p.name }} {{ p.source }}
{% if p.description %}

{{ p.description }}

{% endif %}
Cmds {{ p.cmd_mode }} Net {{ p.net_mode }} Mem {{ p.mem_limit }}
{% if p.tags %}
{% for tag in p.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No profiles found

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

{% endif %} {% endblock %}