diff --git a/contacts/templates/contacts/contact_list.html b/contacts/templates/contacts/contact_list.html
index d797e85e8a..b452c221b7 100644
--- a/contacts/templates/contacts/contact_list.html
+++ b/contacts/templates/contacts/contact_list.html
@@ -1,4 +1,5 @@
{% extends "myhome_base.html" %}
+{% load avatar_tags %}
{% block nav_contacts_class %}class="cur"{% endblock %}
@@ -9,17 +10,19 @@
{% endblock %}
{% block right_panel %}
-
联系人列表
+站内联系人列表
+ |
邮箱 |
名字 |
- 备注 |
+ 备注 |
操作 |
- {% for contact in contacts %}
+ {% for contact in registered_contacts %}
+ {% avatar contact.contact_email 20 %} |
{{ contact.contact_email }} |
{{ contact.contact_name }} |
{{ contact.note }} |
@@ -30,6 +33,30 @@
{% endfor %}
+
+站外联系人列表
+
+
+ |
+ 邮箱 |
+ 名字 |
+ 备注 |
+ 操作 |
+
+ {% for contact in unregistered_contacts %}
+
+ {% avatar contact.contact_email 20 %} |
+ {{ contact.contact_email }} |
+ {{ contact.contact_name }} |
+ {{ contact.note }} |
+
+ 编辑
+ 删除
+ |
+
+{% endfor %}
+
+