Skip to content

Instantly share code, notes, and snippets.

@ozgun
Created December 14, 2012 14:03
Show Gist options
  • Select an option

  • Save ozgun/4285668 to your computer and use it in GitHub Desktop.

Select an option

Save ozgun/4285668 to your computer and use it in GitHub Desktop.
Flash mesajlarının partial'da yazdırılması.
<%# partial'ın adı "_flash.html_erb" OLAMAMALI!!!!! %>
<% unless flash.empty? %>
<div class="flash">
<% flash.each do |k, v| %>
<%= content_tag :div, v, class: k.to_s %>
<% end %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment