2017-01-12 23:54:15 +08:00
|
|
|
<% provide(:head_title, t("experiments.module_archive.head_title", experiment: h(@experiment.name)).html_safe) %>
|
2021-01-08 00:18:52 +08:00
|
|
|
<% provide(:sidebar_title, t("sidebar.my_modules.sidebar_title_archived")) %>
|
2021-09-16 15:55:59 +08:00
|
|
|
<% provide(:sidebar_url, sidebar_experiment_path(@experiment)) %>
|
2022-11-25 22:29:15 +08:00
|
|
|
<% provide(:container_class, 'no-second-nav-container') %>
|
2020-12-10 22:15:36 +08:00
|
|
|
|
|
|
|
<%= content_for :sidebar do %>
|
2020-12-13 05:46:30 +08:00
|
|
|
<%= render partial: 'shared/sidebar/archived_my_modules.html.erb', locals: { experiment: @experiment, my_modules: @my_modules } %>
|
2020-12-10 22:15:36 +08:00
|
|
|
<% end %>
|
2022-11-25 22:29:15 +08:00
|
|
|
<div class="content-pane flexible" id="module-archive">
|
|
|
|
<%= render partial: 'experiments/show_header' %>
|
|
|
|
<div class="toolbar">
|
|
|
|
<% if @my_modules.present? %>
|
|
|
|
<% if can_manage_experiment?(@experiment) %>
|
|
|
|
<div class="restore-button-container collapse">
|
|
|
|
<%= button_to restore_my_modules_experiment_path(@experiment), class: 'btn btn-light', method: :post do %>
|
|
|
|
<span class="fas fa-undo"></span>
|
|
|
|
<%= t('experiments.module_archive.restore_option') %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2020-12-11 18:52:24 +08:00
|
|
|
|
2018-05-08 22:33:42 +08:00
|
|
|
<div class="row" style="margin-top: 10px;">
|
2020-12-13 05:46:30 +08:00
|
|
|
<% @my_modules.each_with_index do |my_module, i| %>
|
2022-12-12 18:45:59 +08:00
|
|
|
<div class="module-container col-lg-4 col-md-5 col-sm-12">
|
2020-12-10 19:07:18 +08:00
|
|
|
<%= render partial: 'canvas/full_zoom/my_module', locals: {experiment: @experiment, my_module: my_module} %>
|
2018-05-08 22:33:42 +08:00
|
|
|
</div>
|
2016-08-08 21:04:02 +08:00
|
|
|
<% end %>
|
|
|
|
</div>
|
2018-05-08 22:33:42 +08:00
|
|
|
<% else %>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
2020-12-13 05:46:30 +08:00
|
|
|
<em><%= t('experiments.module_archive.no_archived_modules') %></em>
|
2018-05-08 22:33:42 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2020-12-10 22:18:31 +08:00
|
|
|
|
|
|
|
<!-- Manage tags modal -->
|
2020-12-11 18:52:24 +08:00
|
|
|
<%= render partial: 'my_modules/modals/manage_module_tags_modal', locals: { my_module: nil } %>
|
2020-12-10 22:18:31 +08:00
|
|
|
|
2018-05-08 22:33:42 +08:00
|
|
|
</div>
|
2020-12-10 22:18:31 +08:00
|
|
|
|
2020-12-11 18:52:24 +08:00
|
|
|
<%= javascript_include_tag('projects/canvas') %>
|
|
|
|
<%= javascript_include_tag('my_modules/archived') %>
|