blob: cb7fe4b6526c41084e91d645c44a1a0e060d9170 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<h1>Listing pms</h1>
<table>
<thead>
<tr>
<th>Author</th>
<th>Recipient</th>
<th>Message</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @pms.each do |pm| %>
<tr>
<td><%= pm.author %></td>
<td><%= pm.recipient %></td>
<td><%= pm.message %></td>
<td><%= link_to 'Show', pm %></td>
<td><%= link_to 'Edit', edit_pm_path(pm) %></td>
<td><%= link_to 'Destroy', pm, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Pm', new_pm_path %>
|