aboutsummaryrefslogtreecommitdiffstats
path: root/account
Commit message (Collapse)AuthorAgeFilesLines
* * added column 'identify' to 'list_approved' viewWeitian LI2014-04-221-3/+6
| | | | * updated navbar.html to always show 'list_approved' but login_required
* fixes to account admin.site.registerWeitian LI2014-04-212-8/+8
|
* * added following methods for 'UserProfile' model:Weitian LI2014-04-212-1/+35
| | | | | | | | | o get_gender_value() o get_approved_value() o get_sponsored_value() o get_identify_value() * updated 'user_registered_callback' to save 'identify' field * updated 'account/profile.html' template to show identify infomation
* * added 'ResendEmailForm' formsWeitian LI2014-04-217-21/+184
| | | | | | | | * implemented 'ResendEmailView' class-based view and templates * added js code 'account_email_resend.js' Warning: cannot load static file located in app directory
* * implemented 'list_approved' view, added related templateWeitian LI2014-04-214-1/+82
| | | | * updated related link in 'navbar.html'
* * added 'profile', 'profile_update' and 'profile_update_done' templatesWeitian LI2014-04-207-27/+172
| | | | | | | and implemented related views * added 'account.forms.UpdateProfileForm' * implemented 'account.views.UpdateProfileView' using class-based view * updated 'account.urls'
* small fixes to "br" tagWeitian LI2014-04-204-6/+54
|
* disabled app south and removed migrationsWeitian LI2014-04-203-153/+0
|
* added 'password_change' and 'password_change_done' views and templatesWeitian LI2014-04-203-4/+60
|
* fixed UserProfile model to use CharField choices in "is_approved" and ↵Weitian LI2014-04-201-2/+17
| | | | "is_sponsored"
* * updated django_skaschool/settings.pyWeitian LI2014-04-204-3/+78
| | | | | | o LOGIN_URL, LOGIN_REDIRECT_URL, LOGOUT_URL * added login/logout views to account urls.py * added account templates for login, logout, profile
* * implemented custom form and profile for registrationWeitian LI2014-04-204-2/+148
|
* * implemented the index pageWeitian LI2014-04-203-0/+153
| | | | | | | | o base.html, navbar.html, favicon.html, index.html o added static files related to index page * performed south migrations * implemented registration templates * implemented regiration views and pages
* * updated settings.py, added settings_email.pyWeitian LI2014-04-185-0/+21
* created directories 'static' and 'templates' * added app 'account', 'notice' * added app 'demo'