Sha256: bb7eebf20b2a47e6089b1262b0eca5acb0c045244fcdef6c346547509685970c
Contents?: true
Size: 878 Bytes
Versions: 12
Compression:
Stored size: 878 Bytes
Contents
<table class="index"> <tr> <th><%= t('name') %></th> <th><%= t('description') %></th> <th><%= t('value') %></th> </tr> <% option_values.each do |option_value| %> <tr> <td><%=option_value.gateway_option.name%></td> <td><%=option_value.gateway_option.description%></td> <td> <% if option_value.gateway_option.textarea %> <textarea name="option[<%=option_value.gateway_option.id%>]" rows="5" cols="26"><%= option_value.value %></textarea> <% else %> <input type="text" size="26" name="option[<%=option_value.gateway_option.id%>]" value="<%= option_value.value %>" style="width: 228px"/> <% end %> </td> </tr> <% end %> <% if option_values.empty? %> <tr><td colspan="3"><%= t('none') %>.</td></tr> <% end%> </table>
Version data entries
12 entries across 12 versions & 2 rubygems