3741402a24
This commit also unifies layout structure and remove no_container flag
33 lines
1.2 KiB
Text
33 lines
1.2 KiB
Text
- breadcrumb_title _("Details")
|
|
- @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 }
|
|
|
|
- if !@project.empty_repo? && can?(current_user, :download_code, @project)
|
|
- signatures_path = project_signatures_path(@project, @project.default_branch)
|
|
.js-signature-container{ data: { 'signatures-path': signatures_path } }
|
|
|
|
%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)
|
|
|
|
- if @project.archived?
|
|
.text-warning.center.prepend-top-20
|
|
%p
|
|
= icon("exclamation-triangle fw")
|
|
#{ _('Archived project! Repository and other project resources are read-only') }
|
|
|
|
- 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
|