{% 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 %}

Links

{% for l in links %}
{{ l.label }} {{ l.url[:50] }}{% if l.url|length > 50 %}...{% endif %} {% if l.role %}{{ l.role }}{% endif %}
Edit
{% else %}
No links
{% endfor %}
{% endblock %}