{% extends "base/base.html" %} {% load crispy_forms_tags %} {% load staticfiles %} {% block css %} {% endblock %} {% block content %} {% include 'messages/message.html' %}

{{ page_title }}

{% if request.user.is_authenticated %} {% else %}

Want to build containers?

{% endif %}
A container is built via an authenticated push to the registry for a finished image built from a Singularity File.
{% if collections %}
{% if collections %}
{% if page_title == "Container Collections" %} {% else %} {% endif %}
{% endif %}
{% for collection in collections %} {% endfor %}
Name Builds Private Modified
{{ collection.name }} {{ collection.containers.count }} {% for name in collection.container_names|slice:":50" %} {{ name }}{% if forloop.last %}{% else %},{% endif %} {% endfor %} {% if collection.private %}Yes{% else %}No{% endif %} {{ collection.modify_date|date:"Y-m-d"}}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}