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