mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
19 lines
620 B
Text
19 lines
620 B
Text
<% if asset.file.processing? && display_image_tag && asset.is_image? %>
|
|
<%= image_tag 'medium/processing.gif' %>
|
|
<span>
|
|
<%= truncate(asset.file_file_name, length: Constants::FILENAME_TRUNCATION_LENGTH) %>
|
|
</span>
|
|
<% else %>
|
|
<% if asset.is_image? && display_image_tag %>
|
|
<%= image_tag asset.url(:medium) %>
|
|
<% end %>
|
|
<% if display_image_tag %>
|
|
<p>
|
|
<%= truncate(asset.file_file_name, length: Constants::FILENAME_TRUNCATION_LENGTH) %>
|
|
</p>
|
|
<% else %>
|
|
<span>
|
|
<%= truncate(asset.file_file_name, length: Constants::FILENAME_TRUNCATION_LENGTH) %>
|
|
</span>
|
|
<% end %>
|
|
<% end %>
|