~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/directory.pt

  • Committer: Jelmer Vernooij
  • Date: 2008-08-06 18:33:20 UTC
  • mto: (197.1.9 pathargs)
  • mto: This revision was merged to the branch mainline in revision 202.
  • Revision ID: jelmer@samba.org-20080806183320-6llann0k480dlb9y
add --log-folder option.

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')" /> 
9
7
  </head>
10
8
  <body>
11
9
    <div id="loggerheadCont">
12
 
      <h1>
13
 
        Browsing
14
 
        <span metal:use-macro="breadcrumbs/directory" />
 
10
      <h1 tal:content="string:Browsing ${name}">
 
11
        Hi.
15
12
      </h1>
16
13
 
17
14
      <div >
21
18
            <th class="datecell">Latest Rev</th>
22
19
            <th class="datecell">Last Changed</th>
23
20
          </tr>
24
 
 
 
21
          
25
22
          <tr class="blueRow0" tal:condition="python:name != '/'">
26
23
            <td class="icocell">
27
 
                <a href="../"><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
 
24
                <a href=".."><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
28
25
            </td>
29
26
            <td class="summcell" colspan="3">
30
 
                <a href="../">..</a>
 
27
                <a href="..">..</a>
31
28
            </td>
32
29
          </tr>
33
30
          <tal:block repeat="dir dirs">
36
33
              <tr tal:attributes="class string:blueRow${dir/parity}">
37
34
                <td class="icocell">
38
35
                    <a tal:attributes="href string:${dir/dirname}/files">
39
 
                        <img tal:attributes="src python:static_url('/static/images/ico_branch.gif')" alt="Branch" />
 
36
                        <img tal:attributes="src python:static_url('/static/images/ico_branch.gif')" />
40
37
                    </a>
41
38
                </td>
42
39
                <td class="autcell">
52
49
            <tal:non-branch-row tal:condition="not:dir/branch">
53
50
              <tr tal:attributes="class string:blueRow${dir/parity}">
54
51
                <td class="icocell">
55
 
                    <a tal:attributes="href string:${dir/dirname}/">
56
 
                        <img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" alt="Folder" />
 
52
                    <a tal:attributes="href string:${dir/dirname}">
 
53
                        <img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" />
57
54
                    </a>
58
55
                </td>
59
56
                <td class="autcell">
60
 
                  <a tal:attributes="href string:${dir/dirname}/" tal:content="dir/dirname" /></td>
 
57
                  <a tal:attributes="href string:${dir/dirname}" tal:content="dir/dirname" /></td>
61
58
                <td class="date"></td>
62
59
                <td class="date" tal:content="dir/last_change"></td>
63
60
              </tr>