<% if params[:description] %>
	<h1><%= @descriptions[0][0] %></h1>
	<%= link_to "<= Back", events_path %>
<% else %>
	<h1>What's Going On?</h1>
	<ol>
		<% @descriptions.each do |description, events| %>
			<li><%= link_to "#{pluralize events.count, "event"} - #{description}", events_path(description: description) %></li>
		<% end %>
	</ol>
<% end %>

<table>
  <thead>
    <tr>
      <th colspan="2"></th>
    </tr>
  </thead>

  <tbody>
    <% @events.each do |event| %>
      <tr>
				<td><%= event.linked_story.html_safe %></td>
				<td style="display: none; "><%= event.to_json %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<% Remetric.track contact: { id: 1228, name: "Ready" }, organization: { id: "swell", name: "Swell Productions" }, adescription: "{{ contact.name }} from {{ organization.name }} laughs." %>