Created
May 1, 2014 18:45
-
-
Save timoleinio/c5b808ba6613a2733070 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
{% 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