blob: 654d317e596a2a44a0ef1dc8f6fdfda23bc8a62a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<p style="color: green"><%= notice %></p>
<h1>Events</h1>
<%= link_to "New event", new_event_path %>
<table class="table table-success table-striped table-bordered mt-2">
<tr>
<th>Date</th>
<th>Name</th>
</tr>
<% @events.each do |e| %>
<tr>
<td><%= e.name %></td>
<td><%= e.date.to_formatted_s(:rfc822) %></td>
</tr>
<% end %>
</table>
|