~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/menu.pt

  • Committer: Matt Nordhoff
  • Date: 2009-05-16 05:11:19 UTC
  • mto: (389.2.2 pep8-2009-10)
  • mto: This revision was merged to the branch mainline in revision 392.
  • Revision ID: mnordhoff@mattnordhoff.com-20090516051119-hjdex50ebnjchf8h
Fix excessive indentation in one spot

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