mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
84 lines
3.4 KiB
Text
84 lines
3.4 KiB
Text
<div class="col-md-6">
|
|
<div class="panel panel-default experiment-panel"
|
|
data-id="<%= experiment.id %>"
|
|
data-canvas-link="<%= canvas_experiment_url(experiment) %>"
|
|
>
|
|
<div class="panel-heading">
|
|
<div class="actions actions-cell table-cell pull-right">
|
|
<%= render partial: 'projects/show/experiment_actions_dropdown.html.erb', locals: { experiment: experiment, view: 'cards', project: project } %>
|
|
</div>
|
|
<div class="panel-title">
|
|
<% if experiment.archived_branch? %>
|
|
<%= link_to experiment.name, module_archive_experiment_path(experiment) %>
|
|
<% else %>
|
|
<%= link_to experiment.name, canvas_experiment_path(experiment) %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if experiment.archived_branch? %>
|
|
<div class="panel-date">
|
|
<span class="fas fa-archive" aria-hidden="true"></span>
|
|
<%= l(experiment_archived_on(experiment), format: :full_date) %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="panel-date">
|
|
<span class="fas fa-calendar-alt" aria-hidden="true"></span>
|
|
<%= l(experiment.created_at, format: :full_date) %> - <%= l(experiment.updated_at, format: :full_date) %>
|
|
</div>
|
|
|
|
<div data-hook="experiment-card-description">
|
|
<% if experiment.description? %>
|
|
<div class='experiment-description'>
|
|
<%= custom_auto_link(experiment.description, team: current_team) %>
|
|
</div>
|
|
<% else %>
|
|
<% if can_manage_experiment?(experiment) %>
|
|
<%= link_to t('experiments.edit.add-description'),
|
|
edit_experiment_url(experiment),
|
|
remote: true,
|
|
data: { id: experiment.id },
|
|
class: 'experiment-no-description' %>
|
|
<% else %>
|
|
<p class='experiment-no-description'><%= t('experiments.edit.no-description') %></p>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<% if experiment.my_modules.active.exists? %>
|
|
<%= link_to canvas_experiment_path(experiment), class: 'no-workflowimg' do %>
|
|
<% if experiment.workflowimg.attached? %>
|
|
<div class="workflowimg-container" data-workflowimg-present="true">
|
|
<%= render partial: 'projects/show/workflow_img', locals: { experiment: experiment } %>
|
|
</div>
|
|
<% else %>
|
|
<div class="workflowimg-container"
|
|
data-workflowimg-present="false"
|
|
data-workflowimg-url="<%= fetch_workflow_img_experiment_url(experiment) %>" >
|
|
<i class="fas fa-spinner fa-spin fa-3x workflowimg-spinner hidden" aria-hidden="true"></i>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<% else %>
|
|
<% if can_manage_experiment?(experiment) %>
|
|
<%= link_to( t('experiments.edit.add_task'),
|
|
canvas_experiment_path(experiment, editMode: true),
|
|
class: 'no-tasks') %>
|
|
<% else %>
|
|
<div class="no-workflowimg">
|
|
<p><%= t('experiments.edit.no_workflowimg') %></p>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% end %>
|
|
<div>
|
|
<%= link_to t('experiments.index.more_link'),
|
|
experiment_path(experiment),
|
|
class: 'experiment-action-link pull-right',
|
|
remote: true %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|