{% extends "base.html" %} {% load gravatar %} {% load anonymizer %} {% load humandate %} {% block title %}Contact info for {{ contact.name|anonymize_name }}{% endblock %} {% block header %} {% endblock %} {% block content %}
{% gravatar_img_for_customer contact.email 32 %}

{{ contact.name|anonymize_name }} <{{ contact.email|anonymize_email }}>

{% if inbox_conversations %}

Inbox

{% endif %} {% if pending_conversations %}

Pending

{% endif %} {% if resolved_conversations %}

Resolved

{% endif %} {% if other_sent_messages %}

Other messages sent to {{ contact.name|anonymize_name }}

{% endif %} {% endblock %}