mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 04:06:53 +08:00
b64e200b91
Also refactor localization files concerning canvas.
13 lines
544 B
Text
13 lines
544 B
Text
<h5 class="text-center"><%= t('experiments.canvas.popups.samples_tab') %></h5>
|
|
<hr>
|
|
<ul class="no-style double-line">
|
|
<% if @number_of_samples == 0 then %>
|
|
<li><em><%= t 'experiments.canvas.popups.no_samples' %></em></li>
|
|
<% else %>
|
|
<% @samples.each do |sample| %>
|
|
<li><span class="text-muted glyphicon glyphicon-triangle-right"></span><span><%= sample.name %></span></li>
|
|
<% end %>
|
|
<% end %>
|
|
<hr>
|
|
<li><%= link_to t("experiments.canvas.popups.manage_samples"), samples_my_module_url(id: @my_module.id) %></li>
|
|
</ul>
|