Site para o estudio Velvet Design em São Paulo. http://velvetdesign.com.br

show.html.erb 535B

123456789101112131415161718192021222324
  1. <p id="notice"><%= notice %></p>
  2. <p>
  3. <strong>Title:</strong>
  4. <%= @upload.title %>
  5. </p>
  6. <p>
  7. <strong>File:</strong><br>
  8. <% if @upload.file.file.content_type == 'image/jpeg' || @upload.file.file.content_type == 'image/png' %>
  9. <%= image_tag @upload.file.to_s if @upload.file != nil %>
  10. <% else %>
  11. <%= link_to @upload.title, @upload.file.to_s %>
  12. <% end %>
  13. </p>
  14. <p>
  15. <strong>Desciption:</strong>
  16. <%= @upload.desciption %>
  17. </p>
  18. <%= link_to 'Edit', edit_upload_path(@upload) %> |
  19. <%= link_to 'Back', admin_files_path %>