Re: Help :django registration - the account activation gives error messages

2010-09-19 Thread failuch
can't find it So it shows me a an errr message. I scanned a source code and found that registratin calls the post_activation_redirect function to get redirection url and then the default backend empties all params before doing the redirect. Please help Lev On Sep 16, 4:05 pm, failuch

Re: django-registration0.8 args on /activation/complete/

2010-09-19 Thread failuch
Use registration signals http://stackoverflow.com/questions/1910359/creating-a-extended-user-profile http://docs.b-list.org/django-registration/0.8/signals.html#registration.signals.user_registered On Aug 20, 1:17 pm, Alex wrote: > Hi, > Thanks for great package - just stuck now on how to updat

Re: tracking changes of a model's attributes

2010-09-17 Thread failuch
just an idea - use database triggers On Sep 17, 12:53 pm, Julian wrote: > hi, > > i'm writing a little statistical app for a django-project. everytime a > very model is saved, something's stored in the db, depending on the > model's attributes. if one of the attributes changes, I have to change >

Re: template problem with login.html

2010-09-17 Thread failuch
style of html documents depends on browser defaults which may take precedence other your styles. I rememer vaquely that there are browser rendering and some other component rendering which affect resulted document appearence. Try different browser at least. On Sep 17, 2:19 pm, ozgur yilmaz wrot

Help :django registration - the account activation gives error messages

2010-09-16 Thread failuch
Hello, all. I have a problem with django registration v 0.8. I use register and activate signals and I indeed got these signals and my functions worked well, except that account activation produces an error message. This error message gets printed if template did not have account variable. I rea

django-registration : How to display different message for invalid username/password case and non-activated account

2010-09-12 Thread failuch
Hi people, The first page of my system proposes to the customer authenticate himself or sign-in for the service. But he can forgot to activate an account and I want to show him error message proposing to look into his e-mail and a different error message when user/passw is invalid. I am novice dj