The easiest way is probably to use something like django-gravatar[1].
Not only you can avoid writing extra models/views, but your site will
also reuse existing avatars for some users because Gravatar utilizes
email as use ID. So you'll only have to add one tag to your template:

<dl>
{% for comment in comments %}
    <dt>{% gravatar_for_email comment.email 64 %} {{ comment.name }}
at {{ comment.submit_date }}</dt>
    <dd>{{ comment.comment }}
{% endfor %}
</dl>

This code wasn't tested but should work with contrib.comments for
authenticated and non-authenticated users.

[1] http://code.google.com/p/django-gravatar/

Regards,
Andy
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to