Module documentation should have options sorted

This commit is contained in:
Michael DeHaan
2012-11-03 18:52:59 -04:00
parent c96f2c968e
commit 626203a7c9
7 changed files with 14 additions and 4 deletions

View File

@@ -29,7 +29,8 @@
<th class="head">choices</th>
<th class="head">comments</th>
</tr>
{% for (k,v) in options.iteritems() %}
{% for k in option_keys %}
{% set v = options[k] %}
<tr>
<td>@{ k }@</td>
<td>{% if v.get('required', False) %}yes{% else %}no{% endif %}</td>