Hi,

I currently have the following model:

class Note( models.Model ):
        content = models.TextField()

I've setup the admin page to allow users to add "notes", which
basically lets them fill in the content variable. However, on the
admin page I want to add a column to show the user that added that
note. This would be the username in the admin page that they logged in
with. I hope that I can do this without adding any information to my
Note class, but if I must then I don't mind.

So column 1 should be the user that added that note, and Column 2
should be the note itself.
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to