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

12 lines
484 B
Plaintext
Raw Normal View History

<p class="step-description-component-command"><b><%= t('protocol_importers.templates.command.title') %></b><br>
2019-07-08 23:22:29 +08:00
<% if item[:name].present? %>
<%= "#{t('protocol_importers.templates.command.name')}: #{item[:name]}" %> <br/>
<% end %>
<% if item[:command].present? %>
<%= t('protocol_importers.templates.command.code') %>: <br/>
<code> <%= item[:command] %> </code>
<% end %>
</p>
<%= render partial: 'protocol_importers/templates/details', locals: { item: item } %>