{% extends "web/base.html" %} {% load humanize %} {% block title %}Apps{% endblock %} {% block content %}

{% if apps %}{{ apps|length|apnumber|capfirst }}{% else %}No{% endif %} App{{ apps|pluralize }}

{% for app in apps %}

{{ app.id }}

Updated
{{ app.updated }}
Created
{{ app.created }}
Owned by
{{ app.owner }}
{% for container in app.containers %} {{ container }} {% endfor %}
{% endfor %}
{% endblock %}