Skip to content

Instantly share code, notes, and snippets.

@BerkhanBerkdemir
Created April 20, 2018 01:46
Show Gist options
  • Save BerkhanBerkdemir/e7e826e373cafdc4987c073854012e4f to your computer and use it in GitHub Desktop.
Save BerkhanBerkdemir/e7e826e373cafdc4987c073854012e4f to your computer and use it in GitHub Desktop.
Usage flash on Rails and Bootstrap
<% flash.each do |message_type, message| %>
<div class="alert alert-<%= message_type %> alert-dismissible fade show" role="alert">
<%= message %>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<% end %>
class PagesController < ApplicationController
def index
flash[:success] = 'You loged in'
redirect_to root_path
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment