56 lines
2.5 KiB
Text
56 lines
2.5 KiB
Text
|
.top-area
|
||
|
.nav-text
|
||
|
- full_count_title = "#{@public_forks_count} public and #{@private_forks_count} private"
|
||
|
== #{pluralize(@total_forks_count, 'fork')}: #{full_count_title}
|
||
|
|
||
|
.nav-controls
|
||
|
= search_field_tag :filter_projects, nil, placeholder: 'Search forks', class: 'projects-list-filter project-filter-form-field form-control input-short',
|
||
|
spellcheck: false, data: { 'filter-selector' => 'span.namespace-name' }
|
||
|
|
||
|
.dropdown
|
||
|
%button.dropdown-toggle.btn.sort-forks{type: 'button', 'data-toggle' => 'dropdown'}
|
||
|
%span.light sort:
|
||
|
- if @sort.present?
|
||
|
= sort_options_hash[@sort]
|
||
|
- else
|
||
|
= sort_title_recently_created
|
||
|
%b.caret
|
||
|
%ul.dropdown-menu.dropdown-menu-align-right
|
||
|
%li
|
||
|
- excluded_filters = [:state, :scope, :label_name, :milestone_id, :assignee_id, :author_id]
|
||
|
= link_to page_filter_path(sort: sort_value_recently_created, without: excluded_filters) do
|
||
|
= sort_title_recently_created
|
||
|
= link_to page_filter_path(sort: sort_value_oldest_created, without: excluded_filters) do
|
||
|
= sort_title_oldest_created
|
||
|
= link_to page_filter_path(sort: sort_value_recently_updated, without: excluded_filters) do
|
||
|
= sort_title_recently_updated
|
||
|
= link_to page_filter_path(sort: sort_value_oldest_updated, without: excluded_filters) do
|
||
|
= sort_title_oldest_updated
|
||
|
|
||
|
- if current_user && can?(current_user, :fork_project, @project)
|
||
|
- if current_user.already_forked?(@project) && current_user.manageable_namespaces.size < 2
|
||
|
= link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: 'Go to your fork', class: 'btn btn-new' do
|
||
|
= icon('code-fork fw')
|
||
|
Fork
|
||
|
- else
|
||
|
= link_to new_namespace_project_fork_path(@project.namespace, @project), title: "Fork project", class: 'btn btn-new' do
|
||
|
= icon('code-fork fw')
|
||
|
Fork
|
||
|
|
||
|
|
||
|
.projects-list-holder
|
||
|
- if @forks.blank?
|
||
|
%ul.content-list
|
||
|
%li
|
||
|
.nothing-here-block No forks to show
|
||
|
- else
|
||
|
= render 'shared/projects/list', projects: @forks, use_creator_avatar: true,
|
||
|
forks: true, show_last_commit_as_description: true
|
||
|
|
||
|
- if @private_forks_count > 0
|
||
|
%ul.projects-list.private-forks-notice
|
||
|
%li.project-row
|
||
|
= icon('lock fw', base: 'circle', class: 'fa-lg private-fork-icon')
|
||
|
%strong= pluralize(@private_forks_count, 'private fork')
|
||
|
%span you have no access to.
|