Skip to content

Instantly share code, notes, and snippets.

@noel
noel / table.html.erb
Created January 27, 2012 01:38
Dynamic Table
<table id="roles">
<thead>
<tr>
<% @columns.each do |column| %>
<th class="center"><%= column %></th>
<% end %>
</tr>
</thead>
<tbody>
<% @Roles.each_with_index do |role, index| %>