On Sat, 2009-05-02 at 15:22 -0700, trancos123 wrote:
> [Sorry for my poor english]
> Hi
> I'm using a django.contrib.comments for my application (with django-
> profile), and i want to add the user avatar
> in every comment.
> How can i do this?
> I'm searching for a tutorial about this, but i can't find nothing.

This shouldn't be too hard. There are two pieces to the solution:
storing the data about the avatar in the database and displaying the
avatar information when you display a comment.

The basic information you need to know is in the custom comments
documentation:
http://docs.djangoproject.com/en/dev/ref/contrib/comments/custom/#ref-contrib-comments-custom

The comment models (in django/contrib/comments/models.py) are designed
to be subclassable. So you would create a subclass of the Comment model,
adding a new field to store the avatar image (or perhaps the username at
an avatar service, if you're using something like gravatars from
Wordpress).

As far as entering and displaying comments goes, that should all work
normally if you've set things up as in the above documentation. I have a
suspicion a lot of that functionality was only fixed up in Django 1.1
and so it might not all work in Django 1.0.2. However, give it a try and
see what happens (since there are no markers in the docs saying it's
"new in Django development version"). But just be prepared -- you might
have to use the Django 1.1-beta for all that work; I'm not sure.

Regards,
Malcolm




--~--~---------~--~----~------------~-------~--~----~
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