Skip to content

Instantly share code, notes, and snippets.

@tonycoz
Created December 5, 2014 01:17
Show Gist options
  • Save tonycoz/dc9ccb41301fc8017c65 to your computer and use it in GitHub Desktop.
Save tonycoz/dc9ccb41301fc8017c65 to your computer and use it in GitHub Desktop.
<:-.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