{% extends "messages/base.html" %} {% load i18n %} {% load pagination_tags %} {% block head_title %}{% trans "Contacts" %}{% endblock %} {% block body %}

{% trans "Contacts" %}

Contacts are people you know but who may or may not be on this site (yet).

Once this feature is complete, you will be able to import your contacts from a variety of places. You will then be notified whenever one of them joins Pinax. You can also help things along by sending them invites :-)

Import vCard

{{ import_vcard_form }}

Import from Google Contacts

{% if authsub_token %}
{% else %}

This will be a two step process. First you must authenticate with Google. Once you have agreed to let Pinax have access to your Google Contacts, you will be taken back here and an "Import Google Contacts" button will appear here.

{% endif %}

Import from Yahoo Address Book

{% if bbauth_token %}
{% else %}

This will be a two step process. First you must authenticate with Yahoo. Once you have agreed to let Pinax have access to your Yahoo Address Book, you will be taken back here and an "Import Yahoo Address Book" button will appear here.

{% endif %}

Contacts

{% with user.contacts.all as contacts %} {% autopaginate contacts %} {% if contacts %} {% for contact in contacts %} {% endfor %}
{% if contact.name %}{{ contact.name }}{% else %}?{% endif %} {{ contact.email }} {% for other_user in contact.users.all %} {{ other_user }} {% endfor %}
{% paginate %} {% else %}

{% trans "No contacts." %}

{% endif %} {% endwith %} {% endblock %}