-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathapps.html
More file actions
32 lines (30 loc) · 777 Bytes
/
apps.html
File metadata and controls
32 lines (30 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends "web/base.html" %}
{% load humanize %}
{% block title %}Apps{% endblock %}
{% block content %}
<div class="blue">
<h1>{% if apps %}{{ apps|length|apnumber|capfirst }}{% else %}No{% endif %} App{{ apps|pluralize }}</h1>
{% for app in apps %}
<div class="row-fluid well">
<div class="span3">
<h3>{{ app.id }}</h3>
</div>
<div class="span6">
<dl class="dl-horizontal">
<dt>Updated</dt>
<dd>{{ app.updated }}</dd>
<dt>Created</dt>
<dd>{{ app.created }}</dd>
<dt>Owned by</dt>
<dd>{{ app.owner }}</dd>
</dl>
</div>
<div class="span3">
{% for container in app.containers %}
{{ container }}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
{% endblock %}