summaryrefslogtreecommitdiff
path: root/app/views/pms/show.html.erb
blob: 595afce29ea27d752886c825bdf7cb0ea6113073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<p>
  <strong>Author:</strong>
  <%= @pm.author.user_name %>
</p>

<p>
  <strong>Recipient:</strong>
  <%= @pm.recipient.user_name %>
</p>

<p>
  <strong>Message:</strong>
  <%= @pm.message %>
</p>

<%= link_to 'Edit', edit_pm_path(@pm) %> |
<%= link_to 'Back', pms_path %>