A website template with lots of features, built with ruby on rails.

show.html.erb 748B

12345678910111213141516171819202122
  1. <div class="page-header">
  2. <h1>
  3. <%= @upload.title %>
  4. <%= link_to 'Edit', edit_upload_path(@upload), class: 'btn btn-mini pull-right', style: 'margin-top: 12px; margin-left: 6px;'%>
  5. <%= link_to 'Delete', @upload, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-danger btn-mini pull-right', style: 'margin-top: 12px;' %>
  6. </h1>
  7. </div>
  8. <div style="text-align:center">
  9. <% if @upload.get_extension == 'jpg' || @upload.get_extension == 'png' %>
  10. <%= image_tag @upload.file.to_s if @upload.file != nil %>
  11. <% else %>
  12. <%= link_to @upload.title, @upload.file.to_s %>
  13. <% end %>
  14. </div>
  15. <%= @upload.description %>
  16. <br>
  17. <div style="text-align:center">
  18. <%= link_to 'Back', admin_files_path, class: 'btn btn-link' %>
  19. </div>