api docs: Filter overridden base parameters.

This commit is contained in:
Max Goodman
2013-03-09 04:11:00 -08:00
parent cbef2f3dae
commit 1d5b3d7451

View File

@@ -226,10 +226,12 @@
%endif
%if base_params:
%for param in sorted(base_params):
<tr class="base-param">
<th scope="row">${param}</th>
<td>${unsafe(safemarkdown(base_params[param], wrap=False))}</td>
</tr>
%if param not in params:
<tr class="base-param">
<th scope="row">${param}</th>
<td>${unsafe(safemarkdown(base_params[param], wrap=False))}</td>
</tr>
%endif
%endfor
%endif
</table>