Skip to content

Commit

Permalink
Fixing the table
Browse files Browse the repository at this point in the history
  • Loading branch information
Chip Childers committed Aug 28, 2013
1 parent 949beef commit 9472082
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cs-operator-dash/app/views/events/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
<h1>Event Viewer</h1>
<table>
<table id="events">
<thead>
<tr>
<th>Type</th>
<th>Content</th>
</tr>
</thead>
<tbody>
<% @events.each do |event| %>
<tr>
<td><%= event["event"] %></td>
<td><%= event.to_json() %></td>
</tr>
<% end %>
</tbody>
</table>

0 comments on commit 9472082

Please sign in to comment.