~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/menu.pt

  • Committer: Michael Hudson
  • Date: 2009-03-16 21:53:23 UTC
  • Revision ID: michael.hudson@canonical.com-20090316215323-id3a24n2g3hkyvno
remove two Y.log()s

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<tal:menu>
 
2
    <ul id="menuTabs">
 
3
        <tal:changes-active tal:condition="not:fileview_active">
 
4
        <li><a tal:attributes="href python:url('/changes', clear=1);
 
5
                               title string:Changes;
 
6
                               id string:on">Changes</a></li>
 
7
        <li><a tal:attributes="href python:url('/files', clear=1);
 
8
                               title string:Files">Files</a></li>
 
9
        </tal:changes-active>
 
10
        <tal:fileview-active tal:condition="fileview_active">
 
11
        <li><a tal:attributes="href python:url('/changes', clear=1);
 
12
                               title string:Changes">Changes</a></li>
 
13
        <li><a tal:attributes="href python:url('/files', clear=1);
 
14
                               title string:Files;
 
15
                               id string:on">Files</a></li>
 
16
        </tal:fileview-active>
 
17
      </ul>
 
18
</tal:menu>
 
19