scinote-web/app/views/shared/_sidebar.html.erb

33 lines
973 B
Plaintext
Raw Normal View History

2016-07-28 17:00:56 +08:00
<%= content_for :sidebar do %>
2016-02-12 23:52:43 +08:00
<div id="slide-panel" class="visible">
<div class="tree">
<ul>
2018-03-22 18:41:33 +08:00
<% if project_page? && action_name == 'index' ||
2016-12-14 17:35:48 +08:00
sample_types_page_project? ||
sample_groups_page_project? %>
2018-03-22 18:41:33 +08:00
<li class="active">
2018-03-22 18:41:33 +08:00
<span class="tree-link line-wrap no-indent">
<span title="<%= t('sidebar.projects.all') %>"><%= t('sidebar.projects.all') %></span>
</span>
</li>
<% else %>
<li>
2018-03-22 18:41:33 +08:00
<span class="tree-link line-wrap no-indent">
<strong>
<%= link_to t('sidebar.projects.all'),
projects_path,
title: t('sidebar.projects.all') %>
</strong>
</span>
</li>
<% end %>
2018-03-22 18:41:33 +08:00
<%= render partial: 'shared/sidebar/projects' %>
2016-02-12 23:52:43 +08:00
</ul>
</div>
</div>
<% end %>
<%= javascript_include_tag("sidebar") %>