Sha256: 259fcdafb666ae709a70a157e7ba06b318797c187e2c22a13be67be20228e7d7

Contents?: true

Size: 245 Bytes

Versions: 2

Compression:

Stored size: 245 Bytes

Contents

$
<%= text_field_tag(
  "product[price][dollars]", ((product.price / 100) if product.price),
  :style => 'width: 50px'
) %>
.
<%= text_field_tag(
  "product[price][cents]", ((product.price % 100) if product.price),
  :style => 'width: 50px'
) %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
admin_assistant-2.0.1 rails_2_test/app/views/admin/products/_price_input.html.erb
admin_assistant-1.0.1 test_rails_app/app/views/admin/products/_price_input.html.erb