Files
grecia/app/views/proposals/_notifications.html.erb
2018-06-06 12:01:16 +02:00

18 lines
534 B
Plaintext

<div class="tabs-panel" id="tab-notifications" role="tab">
<div class="row">
<div class="small-12 column">
<% if @notifications.blank? %>
<div class="callout primary text-center">
<%= t('proposals.show.no_notifications') %>
</div>
<% end %>
<% @notifications.each do |notification| %>
<h3><%= notification.title %></h3>
<p class="more-info"><%= notification.created_at.to_date %></p>
<p><%= notification.body %></p>
<% end %>
</div>
</div>
</div>