Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_projects.html.haml « users « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 297fa53739407271eb9303bb51c9ce827ce59d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- if local_assigns.has_key?(:contributed_projects) && contributed_projects.present?
  .panel.panel-default.contributed-projects
    .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 local_assigns.has_key?(:projects) && 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