rails slim syntax error

277 Views Asked by At

hogehoge.html.erb

<% flash.each do |key, value| %>
<div class="alert alert-<%= key %>"><%= value %></div>
<% end %>

I want to transrate into

hogehoge.html.slim

can anybody help me?

2

There are 2 best solutions below

0
On BEST ANSWER

Something like below should do the work:

-flash.each do |key, value|
  div class="alert alert-#{key}"
    = value
0
On
- flash.each do |key, value| 
  div class="alert alert-#{key}"
    = value