mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
11 lines
515 B
Text
11 lines
515 B
Text
<p class="step-description-component-software"><b><%= t('protocol_importers.templates.software.title') %></b><br>
|
|
<% if item[:name].present? %>
|
|
<%= "#{t('protocol_importers.templates.software.name')}: #{item[:name]}" %>
|
|
<% end %>
|
|
<br>
|
|
<% if item[:source].present? %>
|
|
<%= t('protocol_importers.templates.software.link') %>: <a href="<%= item[:source] %>" target="_blank"><%= item[:source] %></a>
|
|
<% end %>
|
|
</p>
|
|
<%= render partial: 'protocol_importers/templates/details', locals: { item: item } %>
|
|
|