~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/menu.pt

  • Committer: Max Bowsher
  • Date: 2011-03-04 15:49:43 UTC
  • mfrom: (431 trunk-rich)
  • mto: This revision was merged to the branch mainline in revision 432.
  • Revision ID: maxb@f2s.com-20110304154943-zrtlx1ipy49xc8u0
Merge trunk.

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