cours0708/P5B/ruby/mon_projet/app/views/admin/suppliers/show.rhtml

28 lines
381 B
Plaintext
Raw Normal View History

2008-11-25 21:11:16 +00:00
<p>
<b>Name:</b>
<%=h @supplier.name %>
</p>
<p>
<b>Description:</b>
<%=h @supplier.description %>
</p>
<p>
<b>Code:</b>
<%=h @supplier.code %>
</p>
<p>
<b>Created at:</b>
<%=h @supplier.created_at %>
</p>
<p>
<b>Updated at:</b>
<%=h @supplier.updated_at %>
</p>
<%= link_to 'Edit', edit_supplier_path(@supplier) %> |
<%= link_to 'Back', suppliers_path %>