mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
21 lines
918 B
Text
21 lines
918 B
Text
<div class="content-header sticky-header">
|
|
<div class="title-row">
|
|
<i class="sn-icon sn-icon-navigator sci--layout--navigator-open cursor-pointer p-1.5 border rounded border-sn-light-grey mr-4"></i>
|
|
<h1 class="experimnet-name" >
|
|
<% if @experiment.archived_branch? %>
|
|
<span class="whitespace-nowrap"><%= t('labels.archived')%></span>
|
|
<% end %>
|
|
<% if @inline_editable_title_config.present? %>
|
|
<%= render partial: "shared/inline_editing",
|
|
locals: {
|
|
initial_value: @experiment.name,
|
|
config: @inline_editable_title_config
|
|
} %>
|
|
<% else %>
|
|
<div class="name-readonly-placeholder" data-toggle="tooltip" data-placement="bottom" title="<%= @experiment.name %>">
|
|
<%= @experiment.name %>
|
|
</div>
|
|
<% end %>
|
|
</h1>
|
|
</div>
|
|
</div>
|