Re: User Registration -> Password not saving

2011-09-22 Thread Daniel Roseman
On Thursday, 22 September 2011 15:18:15 UTC+1, Kurtis wrote: > > Sorry, I guess I should've posted that as well :) > > import string > class PasswordField(forms.CharField): > > # Setup the Field > def __init__(self, *args, **kwargs): > super(PasswordField, self).__init__(min_le

Re: User Registration -> Password not saving

2011-09-22 Thread Kurtis Mullins
assword must include at least \ one letter and at least one number.') On Thu, Sep 22, 2011 at 4:15 AM, Daniel Roseman wrote: > > > On Wednesday, 21 September 2011 23:42:02 UTC+1, Kurtis wrote: > >> Hey, >> >> I've cr

Re: User Registration -> Password not saving

2011-09-22 Thread Daniel Roseman
On Wednesday, 21 September 2011 23:42:02 UTC+1, Kurtis wrote: > > Hey, > > I've created my own User Registration FormView. Everything seems to > work great except the password is always saved as "!". I can change > that with the "password changer"

Re: User Registration -> Password not saving

2011-09-21 Thread Kurtis
I didn't realize the code would come out so unreadable. It's also posted here: http://dpaste.com/618619/ -- 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

User Registration -> Password not saving

2011-09-21 Thread Kurtis
Hey, I've created my own User Registration FormView. Everything seems to work great except the password is always saved as "!". I can change that with the "password changer" in the admin section of the site. I am using an alternative authentication backend, so I'

Re: django-registration + csrf token

2011-09-11 Thread nicolas HERSOG
t; > Make sure you have 'django.middleware.csrf.CsrfViewMiddleware', in the > MIDDLEWARE_CLASSES tuple in the settings.py file. > > > > Cheers, Brett > > > > On 9 Sep 2011, at 16:47, nicolas HERSOG wrote: > > > >> Hi All ! > >> > >> Do any of y

Re: django-registration + csrf token

2011-09-11 Thread DrBloodmoney
; On 9 Sep 2011, at 16:47, nicolas HERSOG wrote: > >> Hi All ! >> >> Do any of you use this app >> https://bitbucket.org/ubernostrum/django-registration/overview with the csrf >> middleware ? >> >> Instead of re-write myself the registar, check via em

Re: django-registration + csrf token

2011-09-09 Thread Brett Hutley
e this app > https://bitbucket.org/ubernostrum/django-registration/overview with the csrf > middleware ? > > Instead of re-write myself the registar, check via email, lost password, > login and co i tried to use this app, but it don't work and i have this > message : &g

django-registration + csrf token

2011-09-09 Thread nicolas HERSOG
Hi All ! Do any of you use this app https://bitbucket.org/ubernostrum/django-registration/overview with the csrf middleware ? Instead of re-write myself the registar, check via email, lost password, login and co i tried to use this app, but it don't work and i have this message : Forbidden

Re: Django-Registration, How can a beginner work with this 3rd party App?

2011-08-16 Thread Andre Lopes
Thanks for your reply. I will follow this tutorial. Best Regards, On Tue, Aug 16, 2011 at 4:36 PM, shacker wrote: > See also: > > django-profiles: The Missing Manual > http://birdhouse.org/blog/2009/06/27/django-profiles/ > > (django-profiles and django-registration are close

Re: Django-Registration, How can a beginner work with this 3rd party App?

2011-08-16 Thread shacker
See also: django-profiles: The Missing Manual http://birdhouse.org/blog/2009/06/27/django-profiles/ (django-profiles and django-registration are close cousins; I always use them in combination with one another). ./s -- You received this message because you are subscribed to the Google Groups

Re: Django-Registration, How can a beginner work with this 3rd party App?

2011-08-15 Thread william ratcliff
Perhaps the following blog post will be useful for you if you just want to get something up and running: http://devdoodles.wordpress.com/2009/02/16/user-authentication-with-django-registration/ The author even has a link where you can download some of the standard templates. Best, William On

Re: Django-Registration, How can a beginner work with this 3rd party App?

2011-08-15 Thread Andre Terra
To be honest, django registration is quite complex in some aspects for a beginner, due to its modularity. Creating a custom backend for a third party app isn't the easiest exercise for a newbie. If anyone has examples on how to customize django registration, now would be a great time to sha

Re: Django-Registration, How can a beginner work with this 3rd party App?

2011-08-15 Thread Thomas Weholt
nline documentation of third-party apps won't be so cryptic. Thomas On Mon, Aug 15, 2011 at 8:38 PM, Andre Lopes wrote: > Hi, another question from a beginner. > > I am getting some trouble to get Django-Registration working. The > on-line > documentation(http://readthedocs.org

Django-Registration, How can a beginner work with this 3rd party App?

2011-08-15 Thread Andre Lopes
Hi, another question from a beginner. I am getting some trouble to get Django-Registration working. The on-line documentation(http://readthedocs.org/docs/django-registration/en/latest/) is not for a beginner like me, there are many steps that I don't know how to do them. For example the cre

django-registration

2011-08-06 Thread bob gailer
I indstalled django-regstration per the Quick-Start guide: easy_install -Z django-registration manage.py syncdb I added 'registration', to INSTALLED_APPS = () and ACCOUNT_ACTIVATION_DAYS = 7 I added (r'^accounts/', include('registration.backends.default.urls')),

Re: django-registration - stuck at Required templates topic

2011-08-05 Thread Eyad Al-Sibai
I had the same thing... all what you need is to add " {% csrf_token %}" in each template for Post form it will solve your issue On Sat, Aug 6, 2011 at 7:42 AM, bob gailer wrote: > I have stumbled around following various pieces of advice: > > added to views: >from django.core.context_proce

Re: django-registration - stuck at Required templates topic

2011-08-05 Thread bob gailer
I have stumbled around following various pieces of advice: added to views: from django.core.context_processors import csrf modified views to end with: form = ContactForm() c = {} c.update(csrf(request)) c['form'] = form return render_to_response('contact_fo

Re: django-registration - stuck at Required templates topic

2011-08-04 Thread Bruce Dou
I also think that should be a default simple template in the package. On Fri, Aug 5, 2011 at 12:52 PM, Phang Mulianto wrote: > well..like the error said..you need to put {% csrf_token %} inside your > form.. do you read the tutorial? you should read it if you serious getting > in django. . it he

Re: django-registration - stuck at Required templates topic

2011-08-04 Thread Phang Mulianto
well..like the error said..you need to put {% csrf_token %} inside your form.. do you read the tutorial? you should read it if you serious getting in django. . it helps you alot as it help me too.. On Aug 5, 2011 12:12 PM, "bob gailer" wrote: > > > On Aug 4, 11:47 pm, Mario Gudelj wrote: >> Hey B

Re: django-registration - stuck at Required templates topic

2011-08-04 Thread bob gailer
On Aug 4, 11:47 pm, Mario Gudelj wrote: > Hey Bob, > > You can download some basic templates for this > pagehttp://devdoodles.wordpress.com/2009/02/16/user-authentication-with-d... OK - did that - now what? I can get the login form displayed - when I click get: Forbidden (403) CSRF verificat

Re: django-registration - stuck at Required templates topic

2011-08-04 Thread Mario Gudelj
Hey Bob, You can download some basic templates for this page http://devdoodles.wordpress.com/2009/02/16/user-authentication-with-django-registration/ Cheers, On 5 August 2011 12:42, bob gailer wrote: > I followed the installation & configuration of django-registration up > to th

django-registration - stuck at Required templates topic

2011-08-04 Thread bob gailer
I followed the installation & configuration of django-registration up to the start of the Required templates topic. After that I am very lost. "In the default setup, you will need to create several templates required by django-registration" I have little idea what to do or

Re: Doubt : Redirect after registration

2011-07-26 Thread vaibhav agarwal
Hey, @Lior Sion : No I am not using anything other than the default . IN the database the user is created and active ( am able to login manually as the user ) . @Urun : Will try that out .. thanks. Thanks On Jul 26, 12:53 pm, Uros Trebec wrote: > I'm using django-registration and I so

Re: Doubt : Redirect after registration

2011-07-26 Thread Uros Trebec
I'm using django-registration and I solved the same problem by using this: http://djangosnippets.org/snippets/1960/ Works like a charm :) Regards, Uros On Jul 26, 8:41 am, Lior Sion wrote: > Are you using anything not defaulted, like django-registration? In the > database -

Re: Doubt : Redirect after registration

2011-07-25 Thread Lior Sion
Are you using anything not defaulted, like django-registration? In the database - is the user created and the active flag is true? On Jul 24, 2:16 pm, vaibhav agarwal wrote: > Hi, > > I am using Django 1.3. I have started building my first site in django > and it seems real fun . I a

Re: Doubt : Redirect after registration

2011-07-25 Thread vaibhav agarwal
Hi. Yes I did set AUTHENTICATION_BACKENDS to django.contrib.auth.backends.ModelBackend in settings.py . Also doesnt Django by default set AUTHENTICATION_BACKENDS to the value even if I dont set it in the settings.py folder? Inspite of this , the solution hasnt worked :(. Thanks Vaibhav On Jul 24

Re: Doubt : Redirect after registration

2011-07-24 Thread KP
Hi Vaibhav, Just checking - Did you set the AUTHENTICATION_BACKENDS to django.contrib.auth.backends.ModelBackend in settings.py Thanks, KP On Jul 24, 4:16 pm, vaibhav agarwal wrote: > Hi, > > I am using Django 1.3. I have started building my first site in django > and it seems real fun . I am

Doubt : Redirect after registration

2011-07-24 Thread vaibhav agarwal
link http://stackoverflow.com/questions/3222549/how-to-automatically-login-a-user-after-registration-in-django but it does not work for me . When I tried this , the user is directed to the home page but since that has the login_required function , it asks the user to manually login which I dont want

Question about flatpages + registration required

2011-07-22 Thread eddie
, and click the "registration required" checkbox and go to the flatpage url, I'm still able to access the page when logged out. I've included django.contrib.auth and django.contrib.contenttypes as installed apps, as well. Can someone let me know what I'm missing here? Is t

Re: Trouble overriding registration templates

2011-07-19 Thread Joshua Russo
btw, I was correct, it was the development settings causing the problem On Wed, Jul 13, 2011 at 1:43 PM, Joshua Russo wrote: > Correct > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To view this discussion on the web visit > https://gr

Re: Trouble overriding registration templates

2011-07-13 Thread Joshua Russo
Correct -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/K5yKllF_gPcJ. To post to this group, send email to django-users@googlegroups.com. To unsubscribe fro

Re: Trouble overriding registration templates

2011-07-13 Thread Joshua Russo
*light bulb* I forgot about my development vs production settings. I was only changing the TEMPLATE_DIRS in the main settings.py that represents my production settings. I'm not in a place where I can test this but I'm almost certain that's what the problem is. -- You received this message beca

Re: Trouble overriding registration templates

2011-07-13 Thread Shawn Milochik
To be clear, when you say registration/login, you mean templates/registration/login, correct? Your 'registration' directory should be in a 'templates' dir. -- You received this message because you are subscribed to the Google Groups "Django users" group. To pos

Re: Trouble overriding registration templates

2011-07-13 Thread Joshua Russo
Cool, thanks for the confirmation. I do have my template directories explicitly listed in TEMPLATE_DIRS. I even made sure that my app's templates came before the admin templates, but for some reason it's not picking up my /registration/logged_out.html and the others that show

Re: Trouble overriding registration templates

2011-07-13 Thread Shawn Milochik
On 07/13/2011 12:46 PM, Joshua Russo wrote: That's fine, but I was under the impression that the templates could be overridden just by creating the proper path in my template directories. Is that not true? It's true. Check the order of your TEMPLATE_DIRS in settings.py. If you don't have t

Re: Trouble overriding registration templates

2011-07-13 Thread Joshua Russo
That's fine, but I was under the impression that the templates could be overridden just by creating the proper path in my template directories. Is that not true? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the we

Re: Trouble overriding registration templates

2011-07-13 Thread Andre Terra
gt; *An:* django-users@googlegroups.com > *Betreff:* Trouble overriding registration templates > > ** ** > > I want to use my own logout template but it doesn't want to pick it up. The > login template worked just fine, but for anything that's already in the > adm

Re: AW: Trouble overriding registration templates

2011-07-13 Thread Joshua Russo
Am I wrong about how templates work? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/FVBKI9qS2PQJ. To post to this group, send email to django-users@googleg

Re: AW: Trouble overriding registration templates

2011-07-13 Thread Joshua Russo
Sorry, auto correct strikes again. I was trying to reply quickly from my phone. I meant auth, not author views. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-us

AW: Trouble overriding registration templates

2011-07-13 Thread Joshua Russo
I do have a views that are basically just proxies for the author views, but I was under the impression that if I just wanted to replace the registration templates then all I needed was a registration directory in my templates directory with the right file names. From there it should just take

AW: Trouble overriding registration templates

2011-07-12 Thread Szabo, Patrick (LNG-VIE)
@googlegroups.com Betreff: Trouble overriding registration templates I want to use my own logout template but it doesn't want to pick it up. The login template worked just fine, but for anything that's already in the admin's template/registration folder, it only wants to use those. I t

Trouble overriding registration templates

2011-07-12 Thread Joshua Russo
I want to use my own logout template but it doesn't want to pick it up. The login template worked just fine, but for anything that's already in the admin's template/registration folder, it only wants to use those. I tried putting my templates folder before the admin templates fol

Re: create_inactive_user() got an unexpected keyword argument 'profile_callback' Error in django registration . What can be the error ?

2011-06-23 Thread Shawn Milochik
It looks like you added an extra kwarg named profile_callback to a function call to use in your overridden version, then passed *kwargs on to the original version. Before you call the super() version you have to pop off your kwarg because it is an invalid parameter for the original version.

create_inactive_user() got an unexpected keyword argument 'profile_callback' Error in django registration . What can be the error ?

2011-06-23 Thread Satyajit Sarangi
This is my stack trace . Traceback: File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/ base.py" in get_response 111. response = callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python2.6/dist-packages/registrati

Re: how to set up user profile in django-registration ?

2011-06-22 Thread Shawn Milochik
On 06/22/2011 11:41 AM, Satyajit Sarangi wrote: Now I get a database error relation "registration_userprofile" does not exist LINE 1: ..."."id", "registration_userprofile"."user_id" FROM "registrat... That looks like a migration/syncdb issue. Either you added a field to an already-synced mod

Re: how to set up user profile in django-registration ?

2011-06-22 Thread Satyajit Sarangi
Now I get a database error relation "registration_userprofile" does not exist LINE 1: ..."."id", "registration_userprofile"."user_id" FROM "registrat... On Wed, Jun 22, 2011 at 8:58 PM, Shawn Milochik wrote: > On 06/22/2011 11:25 AM, Satyajit Sarangi wrote: > >> Traceback: >> >> 60.

Re: how to set up user profile in django-registration ?

2011-06-22 Thread Shawn Milochik
On 06/22/2011 11:25 AM, Satyajit Sarangi wrote: Traceback: 60. url(r'^profile/$',UserProfile,name='UserProfile'), Exception Type: NameError at /accounts/profile/ Exception Value: name 'UserProfile' is not defined It appears that you have a view named UserProfile in

Re: how to set up user profile in django-registration ?

2011-06-22 Thread Satyajit Sarangi
.6/dist-packages/django/utils/importlib.py" in import_module 35. __import__(name) File "/usr/local/lib/python2.6/dist-packages/registration/urls.py" in 60. url(r'^profile/$',UserProfile,name='UserProfile'), Exception Type: NameError at /accounts/profile/

Re: how to set up user profile in django-registration ?

2011-06-22 Thread Shawn Milochik
On 06/22/2011 11:21 AM, Satyajit Sarangi wrote: These are my steps . 1. Not using django-profile 2. Create my own view to show the profile by using user.get_profile() 3. Created my own view and also a model in django-registration to view the profile . 4 . Did changes to urls.py url(r'^pr

Re: how to set up user profile in django-registration ?

2011-06-22 Thread Satyajit Sarangi
These are my steps . 1. Not using django-profile 2. Create my own view to show the profile by using user.get_profile() 3. Created my own view and also a model in django-registration to view the profile . 4 . Did changes to urls.py url(r'^profile/$',register.UserProfile,name='u

Re: how to set up user profile in django-registration ?

2011-06-22 Thread Piotr Zalewa
On 06/22/11 16:09, Satyajit Sarangi wrote: I am using django registration , which is not displaying any profile when I log in . Thus I am not able to login . What should I do to overcome this ? I assume you've been reading docs already. (django-registration and django user management

how to set up user profile in django-registration ?

2011-06-22 Thread Satyajit Sarangi
I am using django registration , which is not displaying any profile when I log in . Thus I am not able to login . What should I do to overcome this ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: How to use django-profile with django registration ?

2011-06-21 Thread Piotr Zalewa
tion> <https://bitbucket.org/__ubernostrum/django-__registration <https://bitbucket.org/ubernostrum/django-registration>> This is what I am using for user registration . Once , I log in the user is not able

Re: How to use django-profile with django registration ?

2011-06-21 Thread Cal Leeming [Simplicity Media Ltd]
t;> This is my urls.py >>> http://dpaste.com/556955/ >>> >>> On Tue, Jun 21, 2011 at 7:14 PM, Piotr Zalewa >> <mailto:zal...@gmail.com>> wrote: >>> >>> On 06/21/11 14:15, Satyajit Sarangi wrote: >>> >>> >&g

Re: How to use django-profile with django registration ?

2011-06-21 Thread Satyajit Sarangi
gt; This is my urls.py >> http://dpaste.com/556955/ >> >> On Tue, Jun 21, 2011 at 7:14 PM, Piotr Zalewa > <mailto:zal...@gmail.com>> wrote: >> >>On 06/21/11 14:15, Satyajit Sarangi wrote: >> >> >> https://bitbucket.org/__**ubernostrum/

Re: How to use django-profile with django registration ?

2011-06-21 Thread Piotr Zalewa
jango-__registration <https://bitbucket.org/ubernostrum/django-registration> This is what I am using for user registration . Once , I log in the user is not able to get into the userprofile page . Thus I installed this https://bitbucket.org/__ub

Re: How to use django-profile with django registration ?

2011-06-21 Thread Satyajit Sarangi
I am using 1.3 This is my settings.py http://dpaste.com/556954/ This is my urls.py http://dpaste.com/556955/ On Tue, Jun 21, 2011 at 7:14 PM, Piotr Zalewa wrote: > On 06/21/11 14:15, Satyajit Sarangi wrote: > >> https://bitbucket.org/**ubernostrum/django-**registration<https:

Re: How to use django-profile with django registration ?

2011-06-21 Thread Piotr Zalewa
On 06/21/11 14:15, Satyajit Sarangi wrote: https://bitbucket.org/ubernostrum/django-registration This is what I am using for user registration . Once , I log in the user is not able to get into the userprofile page . Thus I installed this https://bitbucket.org/ubernostrum/django-profiles/ for

How to use django-profile with django registration ?

2011-06-21 Thread Satyajit Sarangi
https://bitbucket.org/ubernostrum/django-registration This is what I am using for user registration . Once , I log in the user is not able to get into the userprofile page . Thus I installed this https://bitbucket.org/ubernostrum/django-profiles/ for user profile . Now , this produces a conflict

Re: problems using django-registration

2011-06-21 Thread Kevin Miller
Oh silly me. I was not returning user in the HttpResponse. I don't why I assumed that it would be automatically available. Thanks all. 2011/6/20 没必要吧 : > Do you remember return user in HttpResponse? > > -- > You received this message because you are subscribed to the Google Groups > "Django user

Re: problems using django-registration

2011-06-21 Thread Kevin Miller
w to integrate session management with >> django-registration. Google did not help me that much. > > do you have this line in settings.py: > TEMPLATE_CONTEXT_PROCESSORS = ( >    'django.core.context_processors.request', > -- > regards > KG > htt

Re: problems using django-registration

2011-06-21 Thread Tom Evans
On Mon, Jun 20, 2011 at 10:15 PM, Kevin Miller wrote: > Hi all, > > I am in the process of finishing up an app. However, I just cannot > integrate django-registration and sessions properly. I can allow a > user to register and also log in. But > I am a bit confused in getti

Re: problems using django-registration

2011-06-20 Thread 没必要吧
Do you remember return user in HttpResponse? -- 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 django-users+unsubscr...@googlegroups

Re: problems using django-registration

2011-06-20 Thread Kenneth Gonsalves
On Mon, 2011-06-20 at 16:15 -0500, Kevin Miller wrote: > Can anyone please tell me how to integrate session management with > django-registration. Google did not help me that much. do you have this line in settings.py: TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_process

problems using django-registration

2011-06-20 Thread Kevin Miller
Hi all, I am in the process of finishing up an app. However, I just cannot integrate django-registration and sessions properly. I can allow a user to register and also log in. But I am a bit confused in getting in to work with sessions. Eg. I want to get information based on the user that is

Re: Admin User registration problem...

2011-06-16 Thread ashish tiwari
thank you... -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/T4B46pv50HwJ. To post to this group, send email to django-users@googlegroups.com. To unsubscrib

Re: Admin User registration problem...

2011-06-16 Thread Kenny Meyer
> i want to create superuser(administrator) on registration User.objects.create_superuser is your friend. >             user=User.objects.create_user( >                 username=form.cleaned_data['username'], >                 password=form.cleaned_data['password1

Admin User registration problem...

2011-06-16 Thread ashish tiwari
hi friends, i developed an application in django-nonrel with appengine. i'm using django forms for user registration. forms.py class RegistrationForm(forms.Form): username=forms.CharField(label=u'Username',max_length=30) email=forms.CharField(label=u'

Re: Why is django-registration 0.8 not on PyPI?

2011-05-18 Thread creecode
Hello Ram, James Bennett would be the final authority on that question. Perhaps because it's not actually been released as 0.8? It appears to be in alpha stage. Toodle-l... creecode -- You received this message because you are subscribed to the Google Groups "Django users"

Why is django-registration 0.8 not on PyPI?

2011-05-18 Thread cool-RR
Hey, Does anyone know what's up with django-registration 0.8 not being on PyPI? Ram. -- 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 t

Re: Django 1.2 Dropped Sessions when single view contains registration and login authentication

2011-04-26 Thread Ray Cote
- Original Message - > From: "benp" > To: "Django users" > Sent: Monday, April 25, 2011 8:54:15 AM > Subject: Django 1.2 Dropped Sessions when single view contains registration > and login authentication > I've seen other Django developers h

Django 1.2 Dropped Sessions when single view contains registration and login authentication

2011-04-25 Thread benp
Hi, This issue has been raised on Stack Overflow many times without any resolution. The gist is that all of the views in my site are protected by the @login_required decorator except for a splash page and a registration page (which is only accessible by going through the splash page and passing

Re: add field to the user registration (back-office)

2011-04-10 Thread gladys
algeria) >              ..etc > > So I muste add field country in 'add django user' ==> if montreal user > modify the modules, the modification take  effect in montreal banner. > > How Can I add the field in back office registration ?? > > Thank and sorry for my

add field to the user registration (back-office)

2011-04-10 Thread issolah
d the field in back office registration ?? Thank and sorry for my english ^^ -- Issolah mohamed -- 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 f

Re: extending django-registration forms

2011-04-07 Thread Antonio Sánchez
i have tried a lot things, but nothing works... only when i delete that field, so that is the problem, but i dont know why!?!? :S On 6 abr, 22:29, Antonio Sánchez wrote: > Hi, im having problems extending django-registration register form. i > have extended auth.User -> UserProfile,

extending django-registration forms

2011-04-06 Thread Antonio Sánchez
Hi, im having problems extending django-registration register form. i have extended auth.User -> UserProfile, and added some attributes, one of this is country, that is a ForeignKey to Country Table (Django- Countries, with all countries). After configuring django-registration, i extend regis

Re: How can I create Django web page to connect Facebook login and registration?

2011-03-17 Thread Calvin Spealman
-openid-yahoo-google/ On Thu, Mar 17, 2011 at 11:18 AM, Nge Nge wrote: > > Hi All! > I want to create Django web project. I have to connect from my Django > project to Facebook via login and registration when user login or > register on my web site. > Please guide what need for

Re: How can I create Django web page to connect Facebook login and registration?

2011-03-17 Thread Shawn Milochik
It's easy to create an authentication backend: http://docs.djangoproject.com/en/1.2/topics/auth/#writing-an-authentication-backend If you know (or can figure out) what code you have to write in order to authenticate against Facebook, just drop that code into your custom authentication backend and

How can I create Django web page to connect Facebook login and registration?

2011-03-17 Thread Nge Nge
Hi All! I want to create Django web project. I have to connect from my Django project to Facebook via login and registration when user login or register on my web site. Please guide what need for me because I am a beginner on Django and Python. Although I read via online about Django connect

Re: django-registration - Activate view not works

2011-03-15 Thread bedros
I really like django-userena better than django-registration; thanks for the link -Bedros On Mar 13, 3:52 pm, Sergio Berlotto Jr wrote: > Well, I'll try thehttp://django-userena.orgbecouse django-registration is > stoped development since March/2010. -- You received this message

Re: django-registration - Activate view not works

2011-03-15 Thread Sergio Berlotto Jr
Did not work. -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit t

Re: django-registration - Activate view not works

2011-03-14 Thread Sergio Berlotto Jr
I´ll try it.. In my template I wrote the URL manually ! Oh god.. heheh -- 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 django-use

Re: django-registration - Activate view not works

2011-03-14 Thread Cromulent
Sounds to me like you have done the wrong thing in your templates. My registration email template contains this line: http://{{ site }}{% url registration_activate activation_key=activation_key %} which should provide the correct information. If you already have that and it still does not work

Re: django-registration - Activate view not works

2011-03-13 Thread Sergio Berlotto Jr
Well, I'll try the http://django-userena.org becouse django-registration is stoped development since March/2010. -- 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.

Re: django-registration - Activate view not works

2011-03-13 Thread Sergio Berlotto Jr
The variable "activation_key" is blank, with no value, and the result os activation redirect always to activation_failed view. -- 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. T

Re: django-registration - Activate view not works

2011-03-13 Thread Cromulent
What is the error message you receive? On Mar 13, 5:27 pm, Sergio Berlotto Jr wrote: > I'm using django-registration. > The activation email is generated correctly, but when i'm trying to activate > the new user with generated key sent by e-mail, in > urlhttp://server

django-registration - Activate view not works

2011-03-13 Thread Sergio Berlotto Jr
I'm using django-registration. The activation email is generated correctly, but when i'm trying to activate the new user with generated key sent by e-mail, in url http://server.com/accounts/activate/ee3ad866abca8bf0d29d71870a79a3b84cd9c965/ this only returns failure, and not ac

#PgEast 2011: Session Schedule Up, registration open (Django Training)

2011-03-09 Thread Joshua D. Drake
Hey, #PgEast has its schedule up. Register: https://www.postgresqlconference.org/register Schedule: https://www.postgresqlconference.org/ There is a Django training available on the 22nd. Sincerely, Joshua D. Drake -- PostgreSQL.org Major Contributor Command Prompt, Inc: http://www.commandpr

Re: Override default django Registration email

2011-03-04 Thread Tomasz Zieliński
On 3 Mar, 14:23, bruno desthuilliers wrote: > On 3 mar, 13:39, Kenneth Gonsalves wrote: > > > On Thu, 2011-03-03 at 00:36 -0800, pols wrote: > > > Anyone knows how to override djangos default registration email.I > > > need to alter it to sent as html email i

Re: What apps or snippets to use for Facebook and Twitter registration, login and posting?

2011-03-03 Thread Addy Yeow
For Twitter, https://github.com/joshthecoder/tweepy does the trick for me. On Thu, Mar 3, 2011 at 9:51 PM, guyf wrote: > > > On Mar 2, 4:28 pm, Rodrigo Cea wrote: >> I am developing a site that I want to link with Facebook and Twitter. >> >> So as to not reinvent the wheel, I'm looking for apps

Re: What apps or snippets to use for Facebook and Twitter registration, login and posting?

2011-03-03 Thread guyf
On Mar 2, 4:28 pm, Rodrigo Cea wrote: > I am developing a site that I want to link with Facebook and Twitter. > > So as to not reinvent the wheel, I'm looking for apps or snippets that can > help with this, specifically: > > 1) allow users to register and login with their Facebook and/or Twitter

Re: Override default django Registration email

2011-03-03 Thread pols
hai i need to send my activation_email.html template instead of activattion_email.txt.By default django sends only text emails as the activation mail.But i need to send this as html.so i need to override that email sending function.but i dont know how? -- You received this message because you a

Re: Override default django Registration email

2011-03-03 Thread bruno desthuilliers
On 3 mar, 13:39, Kenneth Gonsalves wrote: > On Thu, 2011-03-03 at 00:36 -0800, pols wrote: > > Anyone knows how to override djangos default registration email.I > > need to alter it to sent as html email instead of text email.As i am a > > bigner of django help me with

Re: Override default django Registration email

2011-03-03 Thread pols
On Mar 3, 1:36 pm, pols wrote: > hai >      Anyone knows how to override djangos default registration > email(activation email).I > need to alter it to sent as HTML email instead of TEXT email.ie i need to > send my activation_email.html template intead of d

Re: Override default django Registration email

2011-03-03 Thread Kenneth Gonsalves
On Thu, 2011-03-03 at 00:36 -0800, pols wrote: > Anyone knows how to override djangos default registration email.I > need to alter it to sent as html email instead of text email.As i am a > bigner of django help me with complete information > > copy the templates to a folder call

Override default django Registration email

2011-03-03 Thread pols
hai Anyone knows how to override djangos default registration email.I need to alter it to sent as html email instead of text email.As i am a bigner of django help me with complete information -- You received this message because you are subscribed to the Google Groups "Django users&q

Re: What apps or snippets to use for Facebook and Twitter registration, login and posting?

2011-03-03 Thread Tomasz Zieliński
On 2 Mar, 18:30, Jason Culverhouse wrote: > On Mar 2, 2011, at 8:28 AM, Rodrigo Cea wrote: > > > I am developing a site that I want to link with Facebook and Twitter. > > https://github.com/flashingpumpkin/django-socialregistration(note the forks) > Personally I like django-socialregistration,

Re: What apps or snippets to use for Facebook and Twitter registration, login and posting?

2011-03-02 Thread Jason Culverhouse
re this is the best code base to start from. I'm also exploring the following: • https://github.com/pennersr/django-allauth • https://github.com/flashingpumpkin/django-socialregistration (note the forks) • https://github.com/kmike/django-registration-facebook-

What apps or snippets to use for Facebook and Twitter registration, login and posting?

2011-03-02 Thread Rodrigo Cea
I am developing a site that I want to link with Facebook and Twitter. So as to not reinvent the wheel, I'm looking for apps or snippets that can help with this, specifically: 1) allow users to register and login with their Facebook and/or Twitter accounts. 2) Have these accounts be linked to

<    1   2   3   4   5   6   7   8   9   10   >