source:
trunk/packages/sipb-xen-www/code/templates/help.tmpl
@
835
Last change on this file since 835 was 597, checked in by price, 16 years ago | |
---|---|
File size: 621 bytes |
Rev | Line | |
---|---|---|
[139] | 1 | #from skeleton import skeleton |
2 | #extends skeleton | |
3 | ||
[445] | 4 | #attr pageclass = 'help' |
5 | ||
[139] | 6 | #def title |
[187] | 7 | #if len($subjects) == 1 |
8 | Help on $subjects[0] | |
9 | #else | |
[139] | 10 | Help |
[187] | 11 | #end if |
[139] | 12 | #end def |
13 | ||
14 | ||
15 | #def body | |
16 | #if not $simple | |
[187] | 17 | <p>Topics: |
18 | #for $key in sorted($mapping) | |
19 | <a href="help?subject=$key">$key</a> | |
20 | #end for | |
21 | </p> | |
[597] | 22 | <p> |
23 | See also <a href="trac/wiki/tips">tips and HOWTOs on the wiki</a>. | |
24 | </p> | |
[139] | 25 | #end if |
26 | #for $subject in $subjects | |
[187] | 27 | #if $subject in $mapping |
28 | <h2>$subject</h2> | |
[536] | 29 | #filter None |
[139] | 30 | <p>$mapping[$subject]</p> |
[536] | 31 | #end filter |
[187] | 32 | #else |
33 | <p>Unknown subject '$subject'.</p> | |
34 | #end if | |
[139] | 35 | #end for |
[187] | 36 | #if $simple |
37 | <a href="javascript:window.close();">Close</a> | |
38 | #end if | |
[139] | 39 | #end def |
Note: See TracBrowser
for help on using the repository browser.