<% end %>
<% if step.description.blank? %>
<%= t("protocols.steps.no_description") %>
<% else %>
<%= step.description %>
<% end %>
<% unless step.tables.blank? then %>
<%= t("protocols.steps.tables") %>
<% step.tables.each do |table| %>
<%= hidden_field(table, :contents, value: table.contents_utf_8, class: "hot-contents") %>
<% end %>
<% end %>
<% assets = ordered_assets(step) %>
<% unless assets.blank? then %>
<%= t("protocols.steps.files") %>
<% assets.each do |asset| %>
-
<% if can_view_or_download_step_assets(@protocol) %>
<% if asset.file_present %>
<%= link_to download_asset_path(asset), data: {no_turbolink: true, id: true, status: "asset-present"} do %>
<% if asset.is_image? %>
<%= image_tag preview_asset_path(asset) %>
<% end %>
<%= raw '
' if asset.is_image? %>
<%= truncate( asset.file_file_name, length: 50 ) %>
<% end %>
<% else %>
<%= asset_loading_span(asset) %>
<% end %>
<% else %>
<%= image_tag preview_asset_path(asset) if asset.is_image? %>
<%= raw '
' if asset.is_image? %>
<%= truncate( asset.file_file_name, length: 50 )%>
<% end %>
<% end %>
<% end %>
<% unless step.checklists.blank? then %>
<% end %>
<% if @protocol.in_module? %>
<% if !step.completed? and can_complete_step_in_protocol(@protocol) %>
<% elsif step.completed? and can_uncomplete_step_in_protocol(@protocol) %>
<% end %>
<% end %>
<% if @protocol.in_module? %>