you know django-registration is a famous module(http://code.google.com/ p/django-registration/).
i have a topic want to discuss with all: there is a option in django-registration : AUTH_PROFILE_MODULE = 'myuser.MyUser' which can be setted in settings.py, so you can access value of MyUser by get_profile.xxx. my topic is, if MyUser have serveral field , to access these filed like this in the templates: Method 1: {{ myuser.get_profile.field1 }}, {{ myuser.get_profile.field2 }}, {{ myuser.get_profile.field3 }}, Method 2: myuser=MyUser.objects.get(.....) then use: {{ myuser.field1 }}, {{ myuser.field2 }}, {{ myuser.field3 }}, does this mean we hit database 3 times in method 1? hit once in method 2 ? just a disscussion, thanks author of django-registration! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---