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

16 lines
484 B
Plaintext
Raw Normal View History

2019-07-03 21:32:55 +08:00
<p class="step-description-component-reagent">
<b><%= t('protocol_importers.templates.reagent.title') %></b>
<br/>
2019-07-08 23:22:29 +08:00
<%= "#{t('protocol_importers.templates.reagent.name')}: #{item[:name]}" %> <br />
<% if item[:link].present? %>
2019-07-03 21:32:55 +08:00
<%= t('protocol_importers.templates.reagent.link') %>:
2019-07-08 23:22:29 +08:00
<a href="<%= item[:link] %>" target="_blank"><%= item[:link] %></a>
<% end %>
</p>
2019-07-03 21:32:55 +08:00
<%= render(
partial: 'protocol_importers/templates/details',
locals: { item: item }
)
%>