Implementing Select field with Flask

From PeformIQ Upgrade
Revision as of 12:47, 26 June 2017 by PeterHarding (talk | contribs)
Jump to navigation Jump to search

See:


<td>
<select name="State" class="inputSelect">
{% for state in ctx.State_options %}
 <option value="{{state}}" {{'selected' if ctx.State == state else ''}}>{{state}}</option>
{% endfor %}
</select>
</td>