Sha256: 1274272b4ce1df9e3475fa9d128c3be0802bab1b2832987636f3e00352932f5a

Contents?: true

Size: 423 Bytes

Versions: 9

Compression:

Stored size: 423 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

9 entries across 9 versions & 1 rubygems

Version Path
administrate-0.4.0 app/views/administrate/application/_flashes.html.erb
administrate-0.3.0 app/views/administrate/application/_flashes.html.erb
administrate-0.2.2 app/views/administrate/application/_flashes.html.erb
administrate-0.2.1 app/views/administrate/application/_flashes.html.erb
administrate-0.2.0 app/views/administrate/application/_flashes.html.erb
administrate-0.2.0.rc1 app/views/administrate/application/_flashes.html.erb
administrate-0.1.5 app/views/administrate/application/_flashes.html.erb
administrate-0.1.4 app/views/administrate/application/_flashes.html.erb
administrate-0.1.3 app/views/administrate/application/_flashes.html.erb