Skip to content

Instantly share code, notes, and snippets.

@timoleinio
Created May 1, 2014 18:45
Show Gist options
  • Save timoleinio/c5b808ba6613a2733070 to your computer and use it in GitHub Desktop.
Save timoleinio/c5b808ba6613a2733070 to your computer and use it in GitHub Desktop.
{% field "my_choice_field" %}
<table>
<thead>
<tr>
<th colspan="2">{{ field.label }}</th>
</tr>
</thead>
<tbody>
{% field_choices %}
<tr>
<td><input id="{{ choice.id }}" type="radio" value="{{ choice.value }}" name="{{ field.name }}" {{ choice.checked }}/></td>
<td><label for="{{ choice.id }}">{{ choice.label }}</label></td>
</tr>
{% endfield_choices %}
</tbody>
</table>
{% endfield %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment