1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
[% PROCESS 'html-incblocks.txt' %]
[% INCLUDE setdate %]
[% thepath=path(token) %]
[% INCLUDE htmlstart title=thepath printpath=1 %]
<H1>[% xmlnorm(nodeParam(token,'comment')) %]</H1>
[% INCLUDE variables %]
[% INCLUDE legend %]
<H2>Leaf nodes:</H2>
[%
FOREACH child = sortTokens(children(token));
IF isLeaf(child);
INCLUDE shortgraph
token=child
nodename=nodeName(child)
comment=nodeParam(child,'comment',1);
END;
END;
%]
<DIV CLASS="BottomShortcuts">
[%
IF global.hwpredict;
IF variables.NOHW;
INCLUDE shortcut url=url(token, view, 'NOHW', '')
text="Enable Holt-Winters"
title="Switch Holt-Winters prediction boundaries";
ELSE;
INCLUDE shortcut url=url(token, view, 'NOHW', 1)
text="Disable Holt-Winters"
title="Switch Holt-Winters prediction boundaries";
END;
END
%]
[% INCLUDE shortcut url=url(token) text="Default view"
title="Restore default subtree view" %]
</DIV>
[% INCLUDE bottomline %]
[% INCLUDE htmlend %]
|