mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 14:46:05 +10:00
* Add search filtering for group projects * Show all user projects on dashboard * Refactor projects list into one view * Hide big list of projects with 'Show all' button
11 lines
422 B
Plaintext
11 lines
422 B
Plaintext
.panel.panel-default
|
|
.panel-heading.clearfix
|
|
.input-group
|
|
= search_field_tag :filter_projects, nil, placeholder: 'Filter by name', class: 'projects-list-filter form-control'
|
|
- if current_user.can_create_project?
|
|
.input-group-addon.dash-new-project
|
|
= link_to new_project_path do
|
|
%strong New project
|
|
|
|
= render 'shared/projects_list', projects: @projects, projects_limit: 20
|