{% extends 'base.html' %} {% block title %}Home{% endblock %} {% block content %}

Environments

{% for environment in environments %}
{{ environment.namespace.name }}/{{ environment.name }} {{ (environment.current_build.size or 0) | filesizeformat(true) }}
{% if environment.current_build.has_yaml %} YAML {% endif %} {% if environment.current_build.has_lockfile %} Lockfile {% endif %} {% if environment.current_build.has_conda_pack %} Archive {% endif %} {% if environment.current_build.has_docker_manifest %} Docker {% endif %}
{% endfor %} {% endblock %}