5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-01 11:46:07 +00:00
panel/views/_flash.haml

10 lines
261 B
Plaintext
Raw Permalink Normal View History

2017-10-10 14:52:27 +00:00
- [ :warning, :success ].each do |type|
- if flash[type]
.alert{class: "alert-#{type.to_s}", role: 'alert'}
- if flash[type].respond_to? :each
%ul
- flash[type].each do |msg|
%li= msg
- else
= flash[type]