Sha256: 772a7032d9af42289193d5e76d52eb5c976e5edda704e5e749f1e4f03e200f4b

Contents?: true

Size: 454 Bytes

Versions: 2

Compression:

Stored size: 454 Bytes

Contents

<%- @breadcrumbs = ["Notifications"] -%>
<%- if @notifications.empty? -%>
<p>There are currently no notifications.</p>
<%- else -%>
<ul class="notifications">
  <%- @notifications.each do |notification| -%>
    <li class="notification">
      <% if notification.url %>
        <a href="<%= notification.url %>"><%= notification.message %></a>
      <% else %>
        <%= notification.message %>
      <% end %>
    </li>
  <%- end -%>
</ul>
<%- end -%>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
coupler-0.0.9-java webroot/views/notifications/index.erb
coupler-0.0.8-java webroot/views/notifications/index.erb