scinote-web/app/views/protocol_importers/templates/_details.html.erb
2019-07-03 09:21:41 +02:00

11 lines
248 B
Plaintext

<p>
<% if item[:details]&.any? %>
<b> <%= t('protocol_importers.templates.details.title')%>: </b>
<br />
<% item[:details]&.compact.each do |k, v| %>
<%= "#{k.humanize}: #{v.to_s}" %>
<br />
<% end %>
<% end %>
</p>