mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
10 lines
265 B
Text
10 lines
265 B
Text
<p>
|
|
<% if item[:details]&.any? %>
|
|
<b> <%= t('protocol_importers.templates.details.title')%>: </b>
|
|
<br />
|
|
<% item[:details].reject { |_,v| v.blank? }.each do |k, v| %>
|
|
<%= "#{k.humanize}: #{v.to_s}" %>
|
|
<br />
|
|
<% end %>
|
|
<% end %>
|
|
</p>
|