<% if can_manage_experiment?(experiment) %>
- <%= link_to t('experiments.edit.label_title'),
edit_experiment_url(experiment),
remote: true,
type: 'button',
data: { id: experiment.id },
class: 'edit-experiment' %>
<% end %>
<% if can_clone_experiment?(experiment) %>
- <%= link_to t('experiments.clone.label_title'),
clone_modal_experiment_url(experiment),
remote: true, type: 'button',
class: 'clone-experiment' %>
<% end %>
<% if can_move_experiment?(experiment) %>
- <%= link_to t('experiments.move.label_title'),
move_modal_experiment_url(experiment),
remote: true, type: 'button',
class: 'move-experiment'%>
<% end %>
<% if can_manage_experiment_users?(experiment) %>
-
<%= link_to edit_access_permissions_project_experiment_path(project, experiment), data: { action: 'remote-modal'} do %>
<%= t('experiments.index.experiment_access') %>
<% end %>
<% else %>
-
<%= link_to access_permissions_project_experiment_path(project, experiment), data: { action: 'remote-modal'} do %>
<%= t('experiments.index.experiment_access') %>
<% end %>
<% end %>
<% if can_archive_experiment?(experiment) %>
- <%= link_to t('experiments.archive.label_title'),
archive_experiment_url(experiment),
type: 'button',
method: :post,
data: { confirm: t('experiments.canvas.archive_confirm') } %>
<% end %>
<% if can_restore_experiment?(experiment) %>
<% experiment_form = nil %>
<%= form_for experiment, method: :patch, format: :html do |f| %>
<% experiment_form = f %>
<%= f.hidden_field :archived, value: false %>
<% end %>
- <%= t "projects.experiment_archive.restore_option" %>
<% end %>