socialforge/app/views/shares/show.html.erb

26 lines
327 B
Plaintext

<p id="notice"><%= notice %></p>
<p>
<b>Created On:</b>
<%= @share.created_on %>
</p>
<p>
<b>Url:</b>
<%= @share.url %>
</p>
<p>
<b>Title:</b>
<%= @share.title %>
</p>
<p>
<b>Share type:</b>
<%= @share.share_type %>
</p>
<%= link_to 'Edit', edit_share_path(@share) %> |
<%= link_to 'Back', shares_path %>