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