main
 1<div class="row neighbourhoods">
 2  <div class="span12">
 3    <h1>Neighbourhoods</h1>
 4    <table class="table">
 5      <thead>
 6        <tr>
 7          <th>Name</th>
 8          <th>Status</th>
 9        </tr>
10      </thead>
11      <tbody>
12      <% @neighbourhoods.sort { |a,b| a.name <=> b.name }.each do |neighbourhood| %>
13      <tr>
14        <td><%= neighbourhood.name %></td>
15        <td class="<%= css_class_for(neighbourhood) %>"><%= neighbourhood.status %></td>
16      </tr>
17      <% end %>
18      </tbody>
19    </table>
20  </div>
21</div>