<% if can_edit_experiment(experiment) %>
- <%= link_to t('experiments.edit.label_title'),
edit_project_experiment_url(project, 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_archive_experiment(experiment) %>
- <%= link_to t('experiments.archive.label_title'),
archive_experiment_url(experiment),
type: 'button',
data: { confirm: t('experiments.canvas.archive_confirm') } %>
<% end %>