scinote-web/app/views/repositories/index.html.erb

120 lines
4.7 KiB
Plaintext
Raw Normal View History

<% provide(:head_title, t("libraries.index.head_title")) %>
<% provide(:container_class, "no-second-nav-container") %>
<% if current_team %>
2020-06-19 21:54:45 +08:00
<%= render partial: "sidebar", locals: { repositories: @repositories, archived: params[:archived] } %>
<div class="content-pane flexible <%= params[:archived] ? :archived : :active %> repositories-index">
2020-06-01 16:24:03 +08:00
<div class="content-header">
<h1 data-view-mode="active"><%= t('libraries.index.head_title') %></h1>
<h1 data-view-mode="archived"><%= t('libraries.index.head_title_archived') %></h1>
2020-06-17 20:05:23 +08:00
<%= 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 %>
2020-06-01 16:24:03 +08:00
</div>
<div class="content-body">
</div>
2017-05-24 15:29:44 +08:00
</div>
<% end %>
<!-- Active table template -->
<template id="activeRepositoriesListTable">
<table id="repositoriesList" class="table"
data-source="<%= team_repositories_path(current_team, format: :json) %>"
>
<thead>
<tr>
<th>
<div class="sci-checkbox-container">
2020-06-09 19:16:50 +08:00
<input value="1" type="checkbox" class="sci-checkbox select-all-checkbox">
<span class="sci-checkbox-label"></span>
</div>
</th>
<th><%= t('libraries.index.table.name') %></th>
<th><%= t('libraries.index.table.number_of_items') %></th>
<th><%= t('libraries.index.table.shared') %></th>
<th><%= t('libraries.index.table.ownership') %></th>
<th><%= t('libraries.index.table.added_on') %></th>
<th><%= t('libraries.index.table.added_by') %></th>
</tr>
</thead>
</table>
</template>
<!-- Archived table template -->
<template id="archivedRepositoriesListTable">
<table id="repositoriesList" class="table"
data-source="<%= team_repositories_path(current_team, archived: true, format: :json) %>"
>
<thead>
<tr>
<th>
<div class="sci-checkbox-container">
2020-06-09 19:16:50 +08:00
<input value="1" type="checkbox" class="sci-checkbox select-all-checkbox">
<span class="sci-checkbox-label"></span>
</div>
</th>
<th><%= t('libraries.index.table.name') %></th>
<th><%= t('libraries.index.table.number_of_items') %></th>
<th><%= t('libraries.index.table.shared') %></th>
<th><%= t('libraries.index.table.ownership') %></th>
<th><%= t('libraries.index.table.added_on') %></th>
<th><%= t('libraries.index.table.added_by') %></th>
<th><%= t('libraries.index.table.archived_on') %></th>
<th><%= t('libraries.index.table.archived_by') %></th>
</tr>
</thead>
</table>
</template>
<!-- Repositories action buttons -->
<template id="repositoriesListButtons">
<% if can_create_repositories?(current_team) %>
2020-06-19 21:54:45 +08:00
<a id="createRepoBtn" class="btn btn-primary"
data-remote="true"
data-view-mode="active"
href="<%= create_modal_team_repositories_path(current_team) %>">
<span class="fas fa-plus"></span>
<span class="hidden-xs"><%= t('libraries.index.no_libraries.create_new_button') %></span>
</a>
<% end %>
2020-06-19 21:54:45 +08:00
<a id="renameRepoBtn" class="btn btn-light disabled" data-view-mode="active" href="#" data-action-mode="single" data-remote="true">
<span class="fas fa-pencil-alt"></span>
<%= t('libraries.index.buttons.edit') %>
</a>
2020-06-19 21:54:45 +08:00
<a id="copyRepoBtn" class="btn btn-light disabled" data-view-mode="active" href="#" data-action-mode="single" data-remote="true">
<span class="fas fa-copy"></span>
<%= t('libraries.index.buttons.duplicate') %>
</a>
<a id="archiveRepoBtn"
2020-06-19 21:54:45 +08:00
class="btn btn-light disabled"
data-view-mode="active"
2020-06-19 21:54:45 +08:00
data-action-mode="multiple"
data-archive-repositories="<%= archive_team_repositories_path(current_team) %>">
<span class="fas fa-archive"></span>
<%= t('libraries.index.buttons.archive') %>
</a>
<a id="restoreRepoBtn"
2020-06-19 21:54:45 +08:00
class="btn btn-light disabled"
data-view-mode="archived"
2020-06-19 21:54:45 +08:00
data-action-mode="multiple"
data-restore-repositories="<%= restore_team_repositories_path(current_team) %>">
<span class="fas fa-undo"></span>
<%= t('libraries.index.buttons.restore') %>
</a>
2020-06-19 21:54:45 +08:00
<a id="deleteRepoBtn" class="btn btn-light disabled" data-view-mode="archived" href="#" data-action-mode="single" data-remote="true">
<span class="fas fa-trash"></span>
<%= t('libraries.index.buttons.delete') %>
</a>
</template>
2018-07-19 23:56:42 +08:00
<%= javascript_include_tag "repositories/index" %>
2020-06-01 16:24:03 +08:00
<%= stylesheet_link_tag 'datatables' %>