{% from "components/icon.html" import Icon %} {% from "components/alert.html" import Alert %} {% extends "base_workspace.html" %} {% block workspace_content %} {% if request.args.get("newWorkspace") %} {{ Alert('Workspace created!', message="\

You are now ready to create projects and environments within the JEDI Cloud.

", level='success' ) }} {% endif %} {% for project in workspace.projects %}

{{ project.name }} ({{ project.environments|length }} environments)

{{ Icon('edit') }} edit
{% endfor %} {% endblock %}