Re: basic extension of users.User

2006-04-11 Thread Norbert
Thanks, that was my problem. :) > def __repr__(self): > return self.get_user().get_full_name() --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-u

Re: basic extension of users.User

2006-04-11 Thread Steven Armstrong
On 04/11/06 05:53, Norbert wrote: > Hello, > > I'm just starting out in really trying to get a Django app on its > feet, even though I've played with it on and off for a couple weeks. > > Here's where my first cryptic error begins. > I tried extend users.User in the most basic fashion I could

Re: basic extension of users.User

2006-04-11 Thread Nebojsa Djordjevic
Norbert wrote: > raise wrapped > TemplateSyntaxError: Caught an exception while rendering. Try to put TEMPLATE_DEBUG=False in settings.py, maybe that will give you a better error report. -- Nebojša Đorđević - nesh Studio Quattro - Niš - SCG http://studioquattro.biz/ http://djnesh.blogspot.

Re: basic extension of users.User

2006-04-10 Thread Michael
On 4/11/06, Norbert <[EMAIL PROTECTED]> wrote: Hello,I'm just starting out in really trying to get a Django app on itsfeet, even though I've played with it on and off for a couple weeks.Here's where my first cryptic error begins.I tried extend users.User in the most basic fashion I could think of:

Re: basic extension of users.User

2006-04-10 Thread Kenneth Gonsalves
On Tuesday 11 Apr 2006 9:23 am, Norbert wrote: > TemplateSyntaxError: Caught an exception while rendering. indicates a borked __repr__. Is the record being added? I think you will find that the record is added and the error comes when it tries to display the success message and list -- regard

basic extension of users.User

2006-04-10 Thread Norbert
Hello, I'm just starting out in really trying to get a Django app on its feet, even though I've played with it on and off for a couple weeks. Here's where my first cryptic error begins. I tried extend users.User in the most basic fashion I could think of: class Stakeholder(meta.Model):