AyuntamientoMadrid/participacion

View on GitHub
app/views/proposals/_notifications.html.erb

Summary

Maintainability
Test Coverage
<div class="tabs-panel" id="tab-notifications">
  <div class="row">
    <div id="proposal_notifications" class="small-12 column notification-body">
      <% if @notifications.blank? %>
        <div class="callout primary text-center">
          <%= t("proposals.show.no_notifications") %>
        </div>
      <% end %>

      <% @notifications.each do |notification| %>
        <div id="<%= dom_id(notification) %>">
          <h3><%= notification.title %></h3>
          <p class="more-info"><%= notification.created_at.to_date %></p>
          <%= simple_format sanitize_and_auto_link(notification.body), {}, sanitize: false %>

          <%= render "proposal_notifications/actions", notification: notification %>
        </div>
      <% end %>
    </div>
  </div>
</div>