Show the cherrypy request object on the helloworld page
[invirt/packages/invirt-web.git] / code / templates / help.tmpl
index 804255a..61061ee 100644 (file)
@@ -1,6 +1,8 @@
 #from skeleton import skeleton
 #extends skeleton
 
+#attr pageclass = 'help'
+
 #def title
 #if len($subjects) == 1
 Help on $subjects[0]
@@ -12,19 +14,21 @@ Help
 
 #def body
 #if not $simple
-<h1>Help</h1>
 <p>Topics: 
 #for $key in sorted($mapping)
 <a href="help?subject=$key">$key</a>
 #end for
 </p>
+<p>
+See also <a href="trac/wiki/tips">tips and HOWTOs on the wiki</a>.
+</p>
 #end if
 #for $subject in $subjects
 #if $subject in $mapping 
-#if not $simple
 <h2>$subject</h2>
-#end if
+#filter None
 <p>$mapping[$subject]</p>
+#end filter
 #else
 <p>Unknown subject '$subject'.</p>
 #end if