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

show.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a521f2f46e19ccc98f2607022645eb49408fb88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
- breadcrumb_title _("Details")
- page_title _("Projects")
- @content_class = "limit-container-width" unless fluid_layout

= content_for :meta_tags do
  = auto_discovery_link_tag(:atom, project_path(@project, rss_url_options), title: "#{@project.name} activity")

= render partial: 'flash_messages', locals: { project: @project }

%div{ class: [("limit-container-width" unless fluid_layout)] }
  = render "projects/last_push"

  = render "home_panel"

  - if can?(current_user, :download_code, @project) && @project.repository_languages.present?
    = repository_languages_bar(@project.repository_languages)

  = render "archived_notice", project: @project
  = render_if_exists "projects/marked_for_deletion_notice", project: @project
  = render_if_exists "projects/ancestor_group_marked_for_deletion_notice", project: @project

  - view_path = @project.default_view

  - if show_auto_devops_callout?(@project)
    = render 'shared/auto_devops_callout'

  %div{ class: project_child_container_class(view_path) }
    = render view_path, is_project_overview: true