You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

other.html.erb 757B

123456789101112131415161718192021
  1. <%= render :layout => 'layouts/file' do %>
  2. <% kind = if @attachment.is_video?
  3. 'video'
  4. elsif @attachment.is_audio?
  5. 'audio'
  6. end %>
  7. <%= render :partial => "common/other",
  8. :locals => {
  9. :kind => kind,
  10. :path => download_named_attachment_url(@attachment,
  11. @attachment.filename),
  12. :download_link => link_to_attachment(
  13. @attachment,
  14. :text => l(:label_no_preview_download),
  15. :download => true,
  16. :class => 'icon icon-download'
  17. )
  18. } %>
  19. <% end %>