mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
21 lines
No EOL
967 B
Text
21 lines
No EOL
967 B
Text
<div class="content-pane flexible <%= params[:archived] ? :archived : :active %> repositories-index"
|
|
data-readonly="<%= !can_manage_team?(current_team) %>">
|
|
<div class="content-header">
|
|
<div class="title-row">
|
|
<h1 data-view-mode="active"><%= t('libraries.index.head_title') %></h1>
|
|
<h1 data-view-mode="archived"><i class="fas fa-archive"></i> <%= t('libraries.index.head_title_archived') %></h1>
|
|
<%= render layout: "shared/view_switch", locals: { disabled: false } do %>
|
|
<li class="view-switch-archived" data-view-mode="active">
|
|
<i class="fas fa-archive button-icon"></i>
|
|
<%= t('libraries.index.switch_view.archived') %>
|
|
</li>
|
|
<li class="view-switch-active" data-view-mode="archived">
|
|
<i class="fas fa-rocket button-icon"></i>
|
|
<%= t('libraries.index.switch_view.active') %>
|
|
</li>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<div class="content-body">
|
|
</div>
|
|
</div> |