mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
47 lines
2.2 KiB
Text
47 lines
2.2 KiB
Text
<% provide(:head_title, t("my_modules.repository.head_title",
|
|
project: h(@project.name),
|
|
module: h(@my_module.name),
|
|
repository: @repository.name).html_safe) %>
|
|
<%= render partial: "shared/sidebar" %>
|
|
<%= render partial: "shared/secondary_navigation" %>
|
|
|
|
<h3><%= @repository.name %></h3>
|
|
|
|
<div id="show-assigned-buttons" class="btn-group repository-assign-group" data-toggle="buttons">
|
|
<button type="button" class="active btn btn-primary" id="assigned-repo-records"><%= t("repositories.view_assigned_records") %></button>
|
|
<button type="button" class="btn btn-default" id="all-repo-records"><%= t("repositories.view_all_records") %></button>
|
|
</div>
|
|
|
|
<div class="toolbarButtons" style="display:none">
|
|
<% if can_assign_repository_records(@my_module, @repository) %>
|
|
<button type="button" class="btn btn-default"
|
|
data-assign-url="<%= assign_repository_records_my_module_path(@my_module, @repository)%>"
|
|
id="assignRepositoryRecords" onclick="onClickAssignRecords()" disabled>
|
|
<span class="glyphicon glyphicon-ok-circle"></span>
|
|
<span class="hidden-xs-custom"><%= t'repositories.assign_records_to_module' %></span>
|
|
</button>
|
|
<% end %>
|
|
<% if can_unassign_repository_records(@my_module, @repository) %>
|
|
<button type="button" class="btn btn-default"
|
|
data-unassign-url="<%= unassign_repository_records_my_module_path(@my_module, @repository)%>"
|
|
id="unassignRepositoryRecords" onclick="onClickUnassignRecords()" disabled>
|
|
<span class="glyphicon glyphicon-ban-circle"></span>
|
|
<span class="hidden-xs-custom"><%= t'repositories.unassign_records_from_module' %></span>
|
|
</button>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div id="content"
|
|
data-repo-id="#repository-table-<%= @repository.id %>">
|
|
<%= render partial: "repositories/repository_table",
|
|
locals: {
|
|
repository: @repository,
|
|
my_module: @my_module,
|
|
repository_index_link: repository_index_my_module_path(@my_module, @repository, format: :json)
|
|
}
|
|
%>
|
|
</div>
|
|
|
|
<%= stylesheet_link_tag 'datatables' %>
|
|
<%= javascript_include_tag 'repositories/repository_datatable' %>
|
|
<%= javascript_include_tag 'repositories/my_module_repository' %>
|