~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/menu.pt

[rs=mwhudson] Merged the latest and greatest from 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
        <li><a tal:attributes="href string:https://help.launchpad.net/Loggerhead;
 
17
                               title string:Help">Help</a></li> 
 
18
        </tal:fileview-active>
 
19
      </ul>
 
20
</tal:menu>
 
21