{% extends "base.html" %} {% block content %}

{{ project.name }}

Edit
Data Path{{ project.data_path }}
This is where the data for the project is stored. It's mounted read-only in the containers at /data.
Workspace Path{{ project.workspace_path }}
This is where the code for the project is stored. It's mounted read-write in the containers at /root/workspace.
Maximum RAM for all containers: {{ project.max_ram }} GB
Maximum number of CPUs for all containers: {{ project.max_cpus }}

Containers

{% csrf_token %}
Here, you can create a new container. Please store the password securely, as even administrators won't be able to recover it. The user is always root
{% include 'container_list.html' %}
{% endblock %}