mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
19 lines
613 B
Text
19 lines
613 B
Text
<% provide(:head_title, sanitize_input(t("my_modules.module_archive.head_title", project: h(@my_module.experiment.project.name), module: h(@my_module.name)))) %>
|
|
<%= render partial: "shared/sidebar" %>
|
|
<%= render partial: "shared/secondary_navigation" %>
|
|
|
|
<div clas="row">
|
|
<div class="col-xs-3">
|
|
<% i = 0 %>
|
|
<% @archived_results.each do |result| %>
|
|
|
|
<%= render partial: "my_modules/archive/result.html.erb", locals: { result: result } %>
|
|
|
|
<% i = i + 1 %>
|
|
<% end %>
|
|
|
|
<% if i == 0 %>
|
|
<em><%=t "my_modules.module_archive.no_archived_results" %></em>
|
|
<% end %>
|
|
</div>
|
|
</div>
|