2016-08-19 23:11:17 +08:00
|
|
|
<div class="modal fade" id="modal-move-module-group" tabindex="-1" role="dialog" aria-labelledby="modal-move-module-group-label">
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
|
<h4 class="modal-title" id="modal-move-module-group-label"><%=t "experiments.canvas.edit.modal_move_module_group.title" %></h4>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
2016-08-30 14:26:59 +08:00
|
|
|
<% experiments = @experiment.project.experiments.is_archived(false) %>
|
|
|
|
<% if experiments.count > 1 %>
|
2016-08-23 16:37:48 +08:00
|
|
|
<%= bootstrap_form_tag do |f| %>
|
2016-08-30 14:26:59 +08:00
|
|
|
<%= f.select :experiment_id, experiments
|
2016-08-23 16:37:48 +08:00
|
|
|
.select { |e| e != @experiment }
|
|
|
|
.collect { |e| [ e.name, e.id ] }, {},
|
|
|
|
{class: "form-control selectpicker", "data-role" => "clear"} %>
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<div>
|
|
|
|
<em>
|
|
|
|
<%= t("experiments.canvas.edit.modal_move_module.no_experiments") %>
|
|
|
|
</em>
|
|
|
|
</div>
|
2016-08-19 23:11:17 +08:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2016-08-30 18:14:15 +08:00
|
|
|
<% if experiments.count > 1 %>
|
2018-04-25 19:57:12 +08:00
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal"><%=t "general.cancel" %></button>
|
|
|
|
<button type="button" class="btn btn-success" data-action="confirm">
|
|
|
|
<%=t "experiments.canvas.edit.modal_move_module_group.confirm" %>
|
|
|
|
</button>
|
2016-08-30 18:14:15 +08:00
|
|
|
<% end %>
|
2016-08-19 23:11:17 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|