Parent: [b38fe7] (diff)

Download this file

menu.tpl    21 lines (19 with data), 391 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
<div id="menu">
<ul id="menu">
%if current == 'list':
<li>List Receivers</li>
%else:
<li><a href="list">List Receivers</a></li>
%end
%if current == 'assoc':
<li>Associate Receivers</li>
%else:
<li><a href="assoc">Associate Receivers</a></li>
%end
%if current == 'stop':
<li>Stop Receivers</li>
%else:
<li><a href="stop">Stop Receivers</a></li>
%end
</ul>
</div>