scinote-web/app/views/shared/smart_annotation/_menu.html.erb

28 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-09-04 22:48:53 +08:00
<% at_who_key = SecureRandom.hex %>
2020-09-17 19:11:54 +08:00
<div class="atwho-header-res" data-team-id="<%= current_team.id %>" data-at-who-key="<%= SecureRandom.hex %>">
2020-09-04 22:48:53 +08:00
<div class="nav nav-tabs sci-nav-tabs">
2020-09-15 20:47:57 +08:00
<a class="tab-button sa-projects" href="#prj-tab-<%= at_who_key %>" role="tab" data-toggle="tab"><%= t('atwho.projects') %></a>
<a class="tab-button sa-experiments" href="#exp-tab-<%= at_who_key %>" data-toggle="tab"><%= t('atwho.experiments') %></a>
<a class="tab-button sa-tasks" href="#tsk-tab-<%= at_who_key %>" data-toggle="tab"><%= t('atwho.tasks') %></a>
<a class="tab-button sa-repositories" href="#rep-tab-<%= at_who_key %>" data-toggle="tab"><%= t('atwho.inventories') %></a>
<div class="dismiss"><span class="fas fa-times"></span></div>
2020-09-04 22:48:53 +08:00
</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>
2020-09-17 19:11:54 +08:00
<div class="tab-pane rep-tab" role="tabpanel" id="rep-tab-<%= at_who_key %>" data-object-type="REPOSITORY"><% if repositories.length > 1 %>
2020-09-04 22:48:53 +08:00
<div class=sci-btn-group>
<% repositories.each do |repository| %>
<button class="btn btn-light repository-object" data-object-id="<%= repository.id %>">
<% if repository.shared_with?(current_team) %>
<i class="fas fa-user-friends"></i>
<% end %>
2020-09-04 22:48:53 +08:00
<%= repository.name %>
</button>
<% end %>
</div>
2020-09-17 19:11:54 +08:00
<% end %></div>
2020-09-04 22:48:53 +08:00
</div>
</div>