1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml" >
4
<title tal:content="string:Browsing ${name}"></title>
6
tal:attributes="href python:static_url('/static/css/global.css')" />
9
<div id="loggerheadCont">
10
<h1 tal:content="string:Browsing ${name}">
15
<table id="logentries">
16
<tr class="logheader">
17
<th class="summarycell" colspan="2">Filename</th>
18
<th class="datecell">Latest Rev</th>
19
<th class="datecell">Last Changed</th>
22
<tr class="blueRow0" tal:condition="python:name != '/'">
24
<a href=".."><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
26
<td class="summcell" colspan="3">
30
<tal:block repeat="dir dirs">
32
<tal:branch-row tal:condition="dir/branch">
33
<tr tal:attributes="class string:blueRow${dir/parity}">
35
<a tal:attributes="href string:${dir/dirname}/files">
36
<img tal:attributes="src python:static_url('/static/images/ico_branch.gif')" />
40
<a tal:attributes="href string:${dir/dirname}/files" tal:content="dir/dirname" /></td>
42
<a tal:attributes="href string:${dir/dirname}/revision/${dir/branch/revno};
43
title string:Show revision ${dir/branch/revno}"
44
tal:content="dir/branch/revno"></a>
46
<td class="date" tal:content="python:util.date_time(dir.last_change)"></td>
49
<tal:non-branch-row tal:condition="not:dir/branch">
50
<tr tal:attributes="class string:blueRow${dir/parity}">
52
<a tal:attributes="href string:${dir/dirname}">
53
<img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" />
57
<a tal:attributes="href string:${dir/dirname}" tal:content="dir/dirname" /></td>
58
<td class="date"></td>
59
<td class="date" tal:content="dir/last_change"></td>