Sha256: 9ebae2266100036b19a30274ef69a2ce3b76604f48b5f90898222bc1cae04f21
Contents?: true
Size: 708 Bytes
Versions: 4
Compression:
Stored size: 708 Bytes
Contents
<table> <tr> <td><%=t("Zone")%>:</td> <td><%= collection_select(:tax_rate, :zone_id, @available_zones, :id, :name, {}, {"style" => "width:200px"}) %></td> </tr> <tr> <td><%=t("Category")%>:</td> <td><%= collection_select(:tax_rate, :tax_category_id, @available_categories, :id, :name, {}, {"style" => "width:200px"}) %></td> </tr> <tr> <td><%=t("Rate")%>:</td> <td><%= f.text_field :amount, {"style" => "width:200px"} %></td> </tr> <tr> <td><%=t("Tax Type")%>:</td> <td><%= f.collection_select :tax_type, TaxRate::TaxType.constants, :id, :title, {}, {:style => "width:200px"}%> </td> </tr> </table>
Version data entries
4 entries across 4 versions & 1 rubygems