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

show.html.haml « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d5324e0d72274edc9ac81f6a58deb807e7b663c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
= content_for :meta_tags do
  - if current_user
    = auto_discovery_link_tag(:atom, dashboard_url(format: :atom, private_token: current_user.private_token), title: "All activity")

- header_title "Projects", (current_user ? root_path : explore_root_path)
= render 'dashboard/projects_head'

- if @last_push
  = render "events/event_last_push", event: @last_push

- if @projects.any?
  = render 'projects'
- else
  = render "zero_authorized_projects"