scinote-web/app/views/protocol_importers/templates/_details.html.erb

11 lines
248 B
Plaintext
Raw Normal View History

<p>
<% if item[:details]&.any? %>
<b> <%= t('protocol_importers.templates.details.title')%>: </b>
<br />
2019-07-03 15:21:41 +08:00
<% item[:details]&.compact.each do |k, v| %>
<%= "#{k.humanize}: #{v.to_s}" %>
<br />
<% end %>
<% end %>
</p>