<%inherit file="/base.tmpl"/> <%block name="info"> <%block name="synopsis"> <%block name="details"> % if node.parameters or node.retval:
% for arg, ix in zip(node.parameters, range(len(node.parameters))):

${arg.argname} :

${formatter.format(node, arg.doc)}
% endfor % if node.retval:

Returns :

${formatter.format(node, node.retval.doc)}
% endif
% endif