Vinay Jose
Create show.html
4f6fb1c unverified
raw
history blame contribute delete
300 Bytes
{% extends 'layout.html' %}
{% block content %}
<h1>{{contact.first}} {{contact.last}}</h1>
<div>
<div>Phone: {{contact.phone}}</div>
<div>Email: {{contact.email}}</div>
</div>
<p>
<a href="/contacts/{{ contact.id }}/edit">Edit</a>
<a href="/contacts">Back</a>
</p>
{% endblock %}