Sha256: bdd083dc4f70632716942f18a87b1f5b6c3af85ce60bb4b7fc10c14887aa4749

Contents?: true

Size: 422 Bytes

Versions: 8

Compression:

Stored size: 422 Bytes

Contents

<%#
# Flash Partial

This partial renders flash messages on every page.

## Relevant Helpers:

- `flash`:
  Returns a hash,
  where the keys are the type of flash (alert, error, notice, etc)
  and the values are the message to be displayed.
%>

<% if flash.any? %>
  <div class="flashes">
    <% flash.each do |key, value| -%>
      <div class="flash flash-<%= key %>"><%= value %></div>
    <% end -%>
  </div>
<% end %>

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
semantic-administrate-0.1.1 app/views/administrate/application/_flashes.html.erb
administrate-0.9.0 app/views/administrate/application/_flashes.html.erb
semantic-administrate-0.1.0 app/views/administrate/application/_flashes.html.erb
administrate-0.8.1 app/views/administrate/application/_flashes.html.erb
administrate-0.8.0 app/views/administrate/application/_flashes.html.erb
administrate-0.7.0 app/views/administrate/application/_flashes.html.erb
administrate-0.6.0 app/views/administrate/application/_flashes.html.erb
administrate-0.5.0 app/views/administrate/application/_flashes.html.erb