~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/directory.pt

  • Committer: Max Kanat-Alexander
  • Date: 2010-12-01 08:30:02 UTC
  • mto: (157.1.21 devel)
  • mto: This revision was merged to the branch mainline in revision 423.
  • Revision ID: mkanat@bugzilla.org-20101201083002-tum61bojpypc9a7b
Merge in a cherrypick of the "view" controller, to help performance on
Launchpad.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
            <th class="datecell">Latest Rev</th>
20
20
            <th class="datecell">Last Changed</th>
21
21
          </tr>
22
 
          
 
22
 
23
23
          <tr class="blueRow0" tal:condition="python:name != '/'">
24
24
            <td class="icocell">
25
 
                <a href=".."><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
 
25
                <a href="../"><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
26
26
            </td>
27
27
            <td class="summcell" colspan="3">
28
 
                <a href="..">..</a>
 
28
                <a href="../">..</a>
29
29
            </td>
30
30
          </tr>
31
31
          <tal:block repeat="dir dirs">
34
34
              <tr tal:attributes="class string:blueRow${dir/parity}">
35
35
                <td class="icocell">
36
36
                    <a tal:attributes="href string:${dir/dirname}/files">
37
 
                        <img tal:attributes="src python:static_url('/static/images/ico_branch.gif')" />
 
37
                        <img tal:attributes="src python:static_url('/static/images/ico_branch.gif')" alt="Branch" />
38
38
                    </a>
39
39
                </td>
40
40
                <td class="autcell">
50
50
            <tal:non-branch-row tal:condition="not:dir/branch">
51
51
              <tr tal:attributes="class string:blueRow${dir/parity}">
52
52
                <td class="icocell">
53
 
                    <a tal:attributes="href string:${dir/dirname}">
54
 
                        <img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" />
 
53
                    <a tal:attributes="href string:${dir/dirname}/">
 
54
                        <img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" alt="Folder" />
55
55
                    </a>
56
56
                </td>
57
57
                <td class="autcell">
58
 
                  <a tal:attributes="href string:${dir/dirname}" tal:content="dir/dirname" /></td>
 
58
                  <a tal:attributes="href string:${dir/dirname}/" tal:content="dir/dirname" /></td>
59
59
                <td class="date"></td>
60
60
                <td class="date" tal:content="dir/last_change"></td>
61
61
              </tr>