MorningPeak/app/views/contacts/show.html.slim
2015-06-17 02:30:58 +02:00

36 lines
604 B
Plaintext

p#notice = notice
p
strong Client:
= link_to @contact.client.name, @contact.client
p
strong Name:
= @contact.name
p
strong Phone:
= @contact.phone
p
strong Email:
= @contact.email
p
strong Last contact:
= @contact.last_contact
p
strong Note:
= @contact.note
p
strong Region:
= @contact.region
p
strong Department:
= @contact.department
p
strong Postal code:
= @contact.postal_code
p
strong Address:
= @contact.address
= link_to 'Edit', edit_contact_path(@contact), class: 'btn btn-sm btn-default'
= link_to 'Back', contacts_path, class: 'btn btn-sm btn-default'