Skip to content

Instantly share code, notes, and snippets.

@oleiade
Created May 22, 2012 10:13
Show Gist options
  • Save oleiade/2768138 to your computer and use it in GitHub Desktop.
Save oleiade/2768138 to your computer and use it in GitHub Desktop.
failing multiple selection
<label class="control-label" for="channelselect">Channels</label>
<div class="controls">
<select name="channels" id="channelselect" multiple="multiple" style="height: 150px;">
{% for channel in channels %}
<option value="{{ channel }}">{{ channel }}</option>
{% endfor %}
</select>
<p class="help-block">Channels on whih keyword should be overriden</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment