Re: Generic views and the User object

2005-12-29 Thread Maniac
Alice wrote: I'm trying to access the username of a journal post in a generic object_detail/list view like this: {{ object.poster.username }} however I'm not getting anything whatsoever ... my model is class Journal(meta.Model): poster = meta.ForeignKey(User, editable=False)

Re: Generic views and the User object

2005-12-29 Thread Alice
works like a charm, thanks. Alice