mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
26 lines
1.3 KiB
Text
26 lines
1.3 KiB
Text
|
<% at_who_key = SecureRandom.hex %>
|
||
|
<div class="atwho-header-res">
|
||
|
<div class="nav nav-tabs sci-nav-tabs">
|
||
|
<a class="tab-button sa-projects" href="#prj-tab-<%= at_who_key %>" role="tab" data-toggle="tab">PROJECTS</a>
|
||
|
<a class="tab-button sa-experiments" href="#exp-tab-<%= at_who_key %>" data-toggle="tab">EXPERIMENTS</a>
|
||
|
<a class="tab-button sa-tasks" href="#tsk-tab-<%= at_who_key %>" data-toggle="tab">TASKS</a>
|
||
|
<a class="tab-button sa-repositories" href="#rep-tab-<%= at_who_key %>" data-toggle="tab">INVENTORIES</a>
|
||
|
</div>
|
||
|
<div class="tab-content">
|
||
|
<div class="tab-pane" role="tabpanel" id="prj-tab-<%= at_who_key %>" data-object-type="PROJECT"></div>
|
||
|
<div class="tab-pane" role="tabpanel" id="exp-tab-<%= at_who_key %>" data-object-type="EXPERIMENT"></div>
|
||
|
<div class="tab-pane" role="tabpanel" id="tsk-tab-<%= at_who_key %>" data-object-type="TASK"></div>
|
||
|
<div class="tab-pane rep-tab" role="tabpanel" id="rep-tab-<%= at_who_key %>" data-object-type="REPOSITORY">
|
||
|
<% if repositories.length > 1 %>
|
||
|
<div class=sci-btn-group>
|
||
|
<% repositories.each do |repository| %>
|
||
|
<button class="btn btn-light repository-object" data-object-id="<%= repository.id %>">
|
||
|
<%= repository.name %>
|
||
|
</button>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|