BathHacked/energy-sparks

View on GitHub
app/views/shared/_activities.html.erb

Summary

Maintainability
Test Coverage
<table class="table">
  <thead>
    <tr>
      <th>Recorded</th>
      <th>Happened</th>
      <th>School</th>
      <th>Title</th>
      <th>Images?</th>
    </tr>
  </thead>
  <tbody>
    <% activities.each do |activity| %>
      <tr>
        <td><%= nice_dates(activity.created_at) %></td>
        <td><%= nice_dates(activity.happened_on) %></td>
        <td><%= link_to activity.school.name, school_url(activity.school) %></td>
        <td>
          <%= link_to school_activity_url(activity.school, activity) do %>
            <% if activity.title.present? %>
              <span class="text-success"><%= activity.title %></span>
            <% else %>
              <span class="text-muted"><%= activity.activity_type.name %></span>
            <% end %>
          <% end %>
        </td>
        <td>
          <%= fa_icon('check-circle text-success') if activity.description_includes_images? %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>