{% extends 'base.html' %} {% block title %}User info{% endblock %} {% block content %} {% block user %}
User
Settings
Manage Environment Settings Manage Global Settings
Namespace

Your current default namespace is {{ username }} with access to the following existing namespaces {% for namespace in namespaces %} {{ namespace.name }} {% endfor %}

The ability to create and manage namespace are controlled by permissions shown below.

Manage Namespaces
Permissions

Below are your current permissions within the conda-store application. The "*" will match any string of characters e.g. "na*ce" will match "namespace". This allows conda-store to have flexible and powerful authorization. For further information on authorization see the docs

{% for entity_arn, entity_permissions in entity_binding_permissions.items() %} {% endfor %}
Namespace Name Permissions
{{ entity_arn.split("/")[0] }} {{ entity_arn.split("/")[1] }} {% for permission in entity_permissions|map(attribute="value")|sort %} {{ permission }} {% endfor %}
Usage

Bellow is your current usage for namespaces you have access to.

{% for namespace, num_environments, num_builds, storage in namespace_usage_metrics %} {% endfor %}
Namespace # Environments # Builds Total Storage
{{ namespace }} {{ num_environments }} {{ num_builds }} {{ storage | filesizeformat(true) }}
System

Bellow is system metrics.

{{ (system_metrics.disk_usage / system_metrics.disk_total * 100) | round | int }}%
{% endblock %} {% endblock %}