root/plesonet_accounts/trunk/README.txt

Revision 45, 1.1 KB (checked in by 235, 3 years ago)
Line 
1django.org.ua
2
3Accounts application based on 4 external applications:
41. django-registration http://code.google.com/p/django-registration/
52. django-profiles http://code.google.com/p/django-profiles/
63. django-avatar http://code.google.com/p/django-avatar/
74. plesonet captcha http://www.django.org.ua/wiki/Captcha
8
9Install:
101. Add Accounts into your applications folder
112. Add external applications into PYTHON PATH
123. Setup external Registration form. In project urls reset url like this:
13url(r'^register/$', register, {'form_class': accounts.forms.AccountRegistrationForm }, name='registration_register')
14If you need external Profile edit form you can do it an
15url(r'^edit/$',views.edit_profile, {'form_class': accounts.forms.MyEditProfileForm }, name='profiles_edit_profile'),
164. Checkout settings and urls example. Consult documentation of external applications about special settings.
17
18Now you can find:
19- registration form in accounts.forms.AccountRegistrationForm
20- user profile in accounts.models.UserProfile
21
22You can modify it accordingly your project requirements.
Note: See TracBrowser for help on using the browser.