Created
May 22, 2012 10:13
-
-
Save oleiade/2768138 to your computer and use it in GitHub Desktop.
failing multiple selection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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