51 lines
998 B
HTML
51 lines
998 B
HTML
[[for temp in templates]]
|
|
<a name="link_[[temp['template_name']]]"></a>
|
|
<div id="template">
|
|
[[if temp.has_key("mod_layer")]]
|
|
Layer: [[mod_layer]]<br>
|
|
[[end]]
|
|
[[if temp.has_key("mod_name")]]
|
|
Module: [[mod_name]]<br>
|
|
[[end]]
|
|
<div id="codeblock">
|
|
[[exec i = 0]]
|
|
<b>[[temp['template_name']]]</b>(
|
|
[[for arg in temp['template_parameters']]]
|
|
[[if i != 0]]
|
|
,
|
|
[[end]]
|
|
[[exec i = 1]]
|
|
[[if arg['optional'] == 'yes']]
|
|
[
|
|
[[end]]
|
|
[[arg['name']]]
|
|
[[if arg['optional'] == 'yes']]
|
|
]
|
|
[[end]]
|
|
[[end]]
|
|
)<br>
|
|
</div>
|
|
<div id="description">
|
|
[[if temp['template_summary']]]
|
|
<h5>Summary</h5>
|
|
[[temp['template_summary']]]
|
|
[[end]]
|
|
[[if temp['template_desc']]]
|
|
<h5>Description</h5>
|
|
[[temp['template_desc']]]
|
|
[[end]]
|
|
<h5>Parameters</h5>
|
|
<table border="1" cellspacing="0" cellpadding="3" width="65%">
|
|
<tr><th >Parameter:</th><th >Description:</th></tr>
|
|
[[for arg in temp['template_parameters']]]
|
|
<tr><td>
|
|
[[arg['name']]]
|
|
</td><td>
|
|
[[arg['desc']]]
|
|
</td></tr>
|
|
[[end]]
|
|
</table>
|
|
</div>
|
|
</div>
|
|
[[end]]
|