mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 13:36:21 +00:00
9 lines
261 B
Text
9 lines
261 B
Text
- [ :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]
|