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