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">
12
<span metal:use-macro="breadcrumbs/directory" />
16
<table id="logentries">
17
<tr class="logheader">
18
<th class="summarycell" colspan="2">Filename</th>
19
<th class="datecell">Latest Rev</th>
20
<th class="datecell">Last Changed</th>
23
<tr class="blueRow0" tal:condition="python:name != '/'">
25
<a href="../"><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
27
<td class="summcell" colspan="3">
31
<tal:block repeat="dir dirs">
33
<tal:branch-row tal:condition="dir/branch">
34
<tr tal:attributes="class string:blueRow${dir/parity}">
36
<a tal:attributes="href string:${dir/dirname}/files">
37
<img tal:attributes="src python:static_url('/static/images/ico_branch.gif')" alt="Branch" />
41
<a tal:attributes="href string:${dir/dirname}/files" tal:content="dir/dirname" /></td>
43
<a tal:attributes="href string:${dir/dirname}/revision/${dir/branch/revno};
44
title string:Show revision ${dir/branch/revno}"
45
tal:content="dir/branch/revno"></a>
47
<td class="date" tal:content="python:util.date_time(dir.last_change)"></td>
50
<tal:non-branch-row tal:condition="not:dir/branch">
51
<tr tal:attributes="class string:blueRow${dir/parity}">
53
<a tal:attributes="href string:${dir/dirname}/">
54
<img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" alt="Folder" />
58
<a tal:attributes="href string:${dir/dirname}/" tal:content="dir/dirname" /></td>
59
<td class="date"></td>
60
<td class="date" tal:content="dir/last_change"></td>