Guest User

Untitled

a guest
Aug 20th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <% f.fields_for :small_icon do |small_icon_form| -%>
  2. <li>
  3. <%= small_icon_form.hidden_field :image_type, :value => "Small" %>
  4. <%= small_icon_form.label :source_file, "Small Icon (JPG, PNG, or GIF at #{Image.size_of(:browse_tv_module)})" %>
  5. <%= small_icon_form.file_field :source_file %>
  6. </li>
  7. <% unless small_icon_form.object.new_record? -%>
  8. <li>
  9. <%= small_icon_form.label :small_icon, "Current Small Icon" %>
  10. <%= image_tag small_icon_form.object.url(:browse_tv_module),
  11. :alt => small_icon_form.object.url %>
  12. </li>
  13. <% end -%>
  14. <% end -%>
Add Comment
Please, Sign In to add comment