Files
nairobi/app/views/notifications/index.html.erb
Alberto Garcia Cabeza 3752f3a53b Adds foundation 6 🎉
2016-02-26 19:33:33 +01:00

22 lines
646 B
Plaintext

<div class="row">
<div class="small-12 column">
<h1 class="float-left margin-top"><%= t("notifications.index.title") %></h1>
<% if @notifications.empty? %>
<div data-alert class="callout primary margin-top clear">
<%= t("notifications.index.empty_notifications") %>
</div>
<% else %>
<div class="float-right margin-top">
<%= link_to t("notifications.index.mark_all_as_read"),
mark_all_as_read_notifications_path, method: :put %>
</div>
<ul class="no-bullet clear notifications-list">
<%= render @notifications %>
</ul>
<% end %>
</div>
</div>