2018-03-20 21:45:57 +08:00
|
|
|
<% provide(:head_title, t("libraries.index.head_title")) %>
|
2018-05-08 22:33:42 +08:00
|
|
|
<% provide(:container_class, "no-second-nav-container") %>
|
2017-05-22 23:54:30 +08:00
|
|
|
|
|
|
|
<% if current_team %>
|
2018-03-21 16:22:55 +08:00
|
|
|
<%= render partial: "sidebar", locals: { repositories: @repositories } %>
|
2018-03-20 21:45:57 +08:00
|
|
|
<%
|
|
|
|
# show only if no repositories present. If the team will have them we will
|
|
|
|
# handle this in left side navigation bar
|
|
|
|
%>
|
2018-05-08 22:33:42 +08:00
|
|
|
<div class="content-pane">
|
|
|
|
<div class="jumbotron text-center" style="margin-top:12%">
|
|
|
|
<strong><%=t 'libraries.index.no_libraries.text' %></strong>
|
|
|
|
<% if can_create_repositories?(current_team) %>
|
|
|
|
<h2><strong><%=t 'libraries.index.no_libraries.title' %><strong></h2>
|
|
|
|
<br />
|
2019-08-19 20:01:48 +08:00
|
|
|
<a class="btn btn-primary btn-lg create-new-repository"
|
2018-05-08 22:33:42 +08:00
|
|
|
data-remote="true"
|
|
|
|
href="<%= create_modal_team_repositories_path(current_team) %>">
|
2018-07-09 19:13:44 +08:00
|
|
|
<span class="fas fa-plus"></span>
|
2018-05-08 22:33:42 +08:00
|
|
|
<span class="hidden-xs"><%= t('libraries.index.no_libraries.create_new_button') %></span>
|
|
|
|
</a>
|
|
|
|
<% else %>
|
2020-03-17 21:38:11 +08:00
|
|
|
<p class="no-permission-title"><strong><%=t 'libraries.index.no_libraries.no_permission_title' %></strong></p>
|
2018-05-08 22:33:42 +08:00
|
|
|
<% end %>
|
|
|
|
</div>
|
2017-05-24 15:29:44 +08:00
|
|
|
</div>
|
2017-05-22 23:54:30 +08:00
|
|
|
<% end %>
|
2017-05-30 21:09:09 +08:00
|
|
|
|
2018-07-19 23:56:42 +08:00
|
|
|
<%= javascript_include_tag "repositories/index" %>
|