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

_flash.html.haml « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2cdaa85bdaa2f066c1552ae4d53a941479963a60 (plain)
1
2
3
4
5
6
7
8
9
10
- extra_flash_class = local_assigns.fetch(:extra_flash_class, nil)

.flash-container.flash-container-page
  -# We currently only support `alert`, `notice`, `success`
  - flash.each do |key, value|
    -# Don't show a flash message if the message is nil
    - if value
      %div{ class: "flash-#{key}" }
        %div{ class: "#{(container_class unless fluid_layout)} #{(extra_flash_class unless @no_container)} #{@content_class}" }
          %span= value