Re: Connecting a django-registration signal to a function

2010-08-24 Thread Kai Timmer
On 23 Aug., 16:51, Kai Timmer wrote: > Whats the problem here? Really? Is no one able to point me in the right direction here? Or is the question just to stupid? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to thi

Connecting a django-registration signal to a function

2010-08-23 Thread Kai Timmer
Hello, this may sound stupid, but all I want to do is to connect the user_activated signal from django-registration to a simple function. And I think that I missed an important part. I have a signals.py file in my django app with a function create_db which is defined like this: def create_db(send

Re: Show additional user information in admin

2009-12-04 Thread Kai Timmer
2009/12/3 Matt Schinckel : > I have an app called person which has my UserProfile in it: Now I got it. Thank you. Greetings, -- Kai Timmer | http://kaitimmer.de Email : em...@kaitimmer.de Jabber (Google Talk): k...@kait.de -- You received this message because you are subscribed to the Goo

Re: Show additional user information in admin

2009-12-03 Thread Kai Timmer
2009/12/3 bax...@gretschpages.com : > How, exactly? I tried this, with no luck: I can't get it working too. Can someone please provide a simple example? That would be really great. Greetings, -- Kai Timmer | http://kaitimmer.de Email : em...@kaitimmer.de Jabber (Google Talk): k...

Re: Show additional user information in admin

2009-12-03 Thread Kai Timmer
rProfile directly via admin/auth/user. From my novice standpoint, it looks like i have to overwrite the default admin.py from the auth module. Is that right? And if yes, how do I do it "the right way"? Thanks for your help, -- Kai Timmer | http://kaitimmer.de Email : em...@kaitimmer.de Jab

Show additional user information in admin

2009-12-02 Thread Kai Timmer
Hello, by following this guide: http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users I made a model and added some information to every user. What do I have to do, to show these additional fields in the admin/user interface? Greetings, -- Kai Timmer | http

Re: Dynamicly preset forms in the admin interface

2009-12-01 Thread Kai Timmer
2009/12/1 rebus_ : > I hope this casts some light on what i am trying to say. > Anyway, the best way is to read docs and look in django code. Sorry i > can't help more. You helped a lot. Thank you. Greets, -- Kai Timmer | http://kaitimmer.de Email : em...@kaitimmer.de Jabber (G

Re: Dynamicly preset forms in the admin interface

2009-11-30 Thread Kai Timmer
ditable. Nothing to change there once the page is rendered > Hope i helped this time :) Too much Information :) I'm just getting started with django ;) Greets, -- Kai Timmer | http://kaitimmer.de Email : em...@kaitimmer.de Jabber (Google Talk): k...@kait.de -- You received this m

Re: Dynamicly preset forms in the admin interface

2009-11-29 Thread Kai Timmer
to change the default data. Greets, -- Kai Timmer | http://kaitimmer.de Email : em...@kaitimmer.de Jabber (Google Talk): k...@kait.de -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us

Dynamicly preset forms in the admin interface

2009-11-29 Thread Kai Timmer
Hello, I'm new to django, so this question may look a bit stupid, but I couldn't find the information in the documentation. I have a pretty simple model which looks like this: class article(models.Model): headline = models.CharField(max_length=140) newsentry = models.TextField() pub_date = m