16 lines
747 B
Text
16 lines
747 B
Text
<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
|
|
<%# use like this: render 'components/radio', label: 'Banana chips', name: 'fave_snacks' %>
|
|
<%# you can pass in an optional key for 'def'ing values to it %>
|
|
<%# if you have a set of radios, consider using components/_radio_set %>
|
|
|
|
<% value = label.downcase.tr(" ", "_") %>
|
|
<% id = "radio_#{name}_#{value}" %>
|
|
<% change ||= false %>
|
|
<% key ? change = "(def '#{key}' '#{value}')" : key = false %>
|
|
|
|
<input type="radio" id="<%= id %>" name="<%= name %>" value="<%= value %>">
|
|
<% if change %>
|
|
<!--= on 'change' <%= change.html_safe %> -->
|
|
<% end %>
|
|
<label for="<%= id %>"><%= label %></label>
|