Skip to content

Instantly share code, notes, and snippets.

@scrogson
Created October 23, 2014 16:32
Show Gist options
  • Save scrogson/f50102e40b8d24fe03a1 to your computer and use it in GitHub Desktop.
Save scrogson/f50102e40b8d24fe03a1 to your computer and use it in GitHub Desktop.
<%= for {notice, msgs} <- Flash.get(@conn) do %>
<div class="container">
<div class="row">
<p class="alert alert-<%= notice %>">
<%= safe Enum.map_join(msgs, "<br>", fn msg -> msg end) %>
</p>
</div>
</div>
<% end %>
@chrismccord
Copy link

    <%= for {notice, msgs} <- Flash.get(@conn) do %>
      <div class="container">
        <div class="row">
          <p class="alert alert-<%= notice %>">
            <%= for msg <- msgs do %>
              <br/><%= msg %>
            <% end %>
          </p>
        </div>
      </div>
    <% end %>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment