summaryrefslogtreecommitdiff
path: root/app/views/projects/show.html.haml
blob: 67bdcd0d9d659c2261807fe50e9258eebf551346 (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
- 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 }

= 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