mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
29 lines
989 B
Text
29 lines
989 B
Text
<%= content_for :sidebar do %>
|
|
<div id="slide-panel" class="visible">
|
|
<div id="repo-tree" class="tree">
|
|
<ul>
|
|
<% repositories.each do |repository| %>
|
|
<li class="<%= 'active parent_li' if current_page?(repository_path(repository)) %>" >
|
|
<span class="tree-link line-wrap no-indent">
|
|
<% if current_page?(repository_path(repository)) %>
|
|
<span title="<%= repository.name %>"><%= repository.name %></span>
|
|
<% else %>
|
|
<%= link_to repository.name,
|
|
repository_path(repository),
|
|
data: { 'no-turbolink' => 'true' } %>
|
|
<% end %>
|
|
|
|
<% if repository.team_repositories.where(team: current_team).any? %>
|
|
<i class="fas fa-user-friends"></i>
|
|
<% end %>
|
|
</span>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<script>
|
|
$('#wrapper').show();
|
|
</script>
|