{% extends "piggyback/base.html" %} {% block title %}Recipients{% endblock %} {% block content %}

Address Book

Manage recipients for your cards. Your account details are synced automatically.

{% if system_user_details.full_name or system_user_details.email %}
Me

{{ system_user_details.full_name|default:"Your profile" }}

{% if system_user_details.email %}{{ system_user_details.email }}{% endif %} {% if system_user_details.city %} ยท {{ system_user_details.city }}{% endif %}

Synced from your account
{% endif %} {% include "piggyback/partials/recipients_panel.html" %}
{% endblock %}