Pregunta

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?

¿Fue útil?

Solución

Something like below should do the work:

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

Otros consejos

- flash.each do |key, value| 
  div class="alert alert-#{key}"
    = value
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top