Created
December 5, 2014 01:17
-
-
Save tonycoz/dc9ccb41301fc8017c65 to your computer and use it in GitHub Desktop.
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
<:-.set options = [ article.option_descs(cfg) ]:> | |
<:-.for option in options:> | |
<label for="<:= option.name:>"><:= option.desc:>:</label> | |
<select name="<:= option.name:>" id="<:= option.name:>" class="form-control"> | |
<:-.for item in option.values:> | |
<option value="<:= item:>"><:= option.labels[item]:></option> | |
<:-.end for:> | |
</select> | |
<:-.end for:> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment