aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/directory.html
blob: 662355de36348ea278e41bbb8621f50e96c0414b (plain)
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
33
34
35
36
37
{% extends "layout.html" %}

{% block content %}

<h1>Directory listing for {{ path }}</h1>

{% set row_class = cycler('alt', '') %}

<table>

<tr class="{{ row_class.next() }}">
<th style="min-width:18em">Name</th>
<th style="min-width:8em">Size</th>
<th style="min-width:10em">Type</th>
<th style="min-width:10em">Encoding</th>
</tr>

{% for d in directories %}  
  <tr class="directory {{ row_class.next() }}">
    <td><a href="{{ d.href }}"><b>{{ d.text }}</b></a></td>
    <td><b>{{ d.size }}</b></td>
    <td><b>{{ d.type }}</b></td>
    <td><b>{{ d.encoding }}</b></td>
  </tr>
{% endfor %}

{% for f in files %}
  <tr class="file {{ row_class.next() }}">
    <td><a href="{{ f.href }}">{{ f.text }}</a></td>
    <td>{{ f.size }}</td>
    <td>{{ f.type }}</td>
    <td>{{ f.encoding }}</td>
  </tr>
{% endfor %}
</table>

{% endblock %}