65105ff3bb
* 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
13 lines
492 B
Text
13 lines
492 B
Text
- if @contributed_projects.present?
|
|
.panel.panel-default
|
|
.panel-heading Projects contributed to
|
|
= render 'shared/projects_list',
|
|
projects: @contributed_projects.sort_by(&:star_count).reverse,
|
|
projects_limit: 5, stars: true, avatar: false
|
|
|
|
- if @projects.present?
|
|
.panel.panel-default
|
|
.panel-heading Personal projects
|
|
= render 'shared/projects_list',
|
|
projects: @projects.sort_by(&:star_count).reverse,
|
|
projects_limit: 10, stars: true, avatar: false
|