~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/directory.pt

  • Committer: Martin Pool
  • Date: 2011-11-25 01:41:07 UTC
  • mto: This revision was merged to the branch mainline in revision 461.
  • Revision ID: mbp@canonical.com-20111125014107-9p2k08zko835j9ht
Non-tip tarballs include the revspec in their name

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
    <title tal:content="string:Browsing ${name}"></title>
5
5
    <link rel="stylesheet"
6
6
          tal:attributes="href python:static_url('/static/css/global.css')" />
 
7
    <link rel="shortcut icon"
 
8
          tal:attributes="href python:branch.static_url('/static/images/favicon.ico')" /> 
7
9
  </head>
8
10
  <body>
9
11
    <div id="loggerheadCont">
19
21
            <th class="datecell">Latest Rev</th>
20
22
            <th class="datecell">Last Changed</th>
21
23
          </tr>
22
 
          
 
24
 
23
25
          <tr class="blueRow0" tal:condition="python:name != '/'">
24
26
            <td class="icocell">
25
 
                <a href=".."><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
 
27
                <a href="../"><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
26
28
            </td>
27
29
            <td class="summcell" colspan="3">
28
 
                <a href="..">..</a>
 
30
                <a href="../">..</a>
29
31
            </td>
30
32
          </tr>
31
33
          <tal:block repeat="dir dirs">
50
52
            <tal:non-branch-row tal:condition="not:dir/branch">
51
53
              <tr tal:attributes="class string:blueRow${dir/parity}">
52
54
                <td class="icocell">
53
 
                    <a tal:attributes="href string:${dir/dirname}">
 
55
                    <a tal:attributes="href string:${dir/dirname}/">
54
56
                        <img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" alt="Folder" />
55
57
                    </a>
56
58
                </td>
57
59
                <td class="autcell">
58
 
                  <a tal:attributes="href string:${dir/dirname}" tal:content="dir/dirname" /></td>
 
60
                  <a tal:attributes="href string:${dir/dirname}/" tal:content="dir/dirname" /></td>
59
61
                <td class="date"></td>
60
62
                <td class="date" tal:content="dir/last_change"></td>
61
63
              </tr>