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

_flash_messages.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4739689b419feda88992fea70fcf215ba411d162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- project = local_assigns.fetch(:project)

= content_for :flash_message do
  = render partial: 'deletion_failed', locals: { project: project }
  - if current_user && can?(current_user, :download_code, project)
    = render 'shared/no_ssh'
    = render 'shared/no_password'
    - unless project.empty_repo?
      = render 'shared/auto_devops_implicitly_enabled_banner', project: project
    = render_if_exists 'projects/above_size_limit_warning', project: project
    = render_if_exists 'shared/shared_runners_minutes_limit', project: project, classes: [container_class, ("limit-container-width" unless fluid_layout)]
    = render 'shared/namespace_storage_limit_alert', namespace: project.namespace, classes: [container_class, ("limit-container-width" unless fluid_layout)]