{% extends "base.html" %} {% block content %}

{{ item.first_name }} {{ item.last_name or '' }}

Edit
{% if item.company %}{{ item.company }}{% endif %} {% if item.role %}{{ item.role }}{% endif %}
{% if item.email %}{% endif %} {% if item.phone %}{% endif %} {% if item.notes %}
Notes
{{ item.notes }}
{% endif %} {% if item.tags %}
Tags
{% for tag in item.tags %}{{ tag }}{% endfor %}
{% endif %}
{% endblock %}