Skip to content

Instantly share code, notes, and snippets.

@pier-oliviert
Forked from AeroNotix/gist:5627017
Last active December 17, 2015 14:59
Show Gist options
  • Save pier-oliviert/5628112 to your computer and use it in GitHub Desktop.
Save pier-oliviert/5628112 to your computer and use it in GitHub Desktop.
<select id="individual">
{{range .EMPLOYEES}}
{{ if .Selected }}
<option value="{{.ID}}" selected>{{.Name}}</option>
{{ else }}
<option value="{{.ID}}">{{.Name}}</option>
{{ end }}
{{else}}
<option value="nil">----</option>
{{end}}
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment