├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── setup.py ├── test_project ├── __init__.py ├── manage.py ├── requirements.txt ├── settings.py ├── templates │ └── base.html ├── test_accounts │ ├── __init__.py │ ├── forms.py │ └── models.py └── urls.py └── userprofiles ├── __init__.py ├── admin.py ├── auth_backends.py ├── contrib ├── __init__.py ├── accountverification │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── emailverification │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py └── profiles │ ├── __init__.py │ ├── forms.py │ ├── models.py │ ├── tests │ ├── __init__.py │ └── test_views.py │ ├── urls.py │ └── views.py ├── forms.py ├── locale └── de │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── mixins.py ├── models.py ├── settings.py ├── templates └── userprofiles │ ├── email_change.html │ ├── email_change_requested.html │ ├── logged_out.html │ ├── login.html │ ├── mails │ ├── activation_email.html │ ├── activation_email_subject.html │ ├── emailverification.html │ ├── emailverification_subject.html │ └── password_reset_email.html │ ├── password_change.html │ ├── password_change_done.html │ ├── password_reset.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── profile.html │ ├── profile_change.html │ ├── registration.html │ ├── registration_activate.html │ └── registration_complete.html ├── tests ├── __init__.py ├── test_auth_backends.py ├── test_forms.py ├── test_settings.py ├── test_utils.py └── test_views.py ├── urls.py ├── utils.py └── views.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/test_project/requirements.txt -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/test_project/templates/base.html -------------------------------------------------------------------------------- /test_project/test_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/test_project/test_accounts/forms.py -------------------------------------------------------------------------------- /test_project/test_accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/test_project/test_accounts/models.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /userprofiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/admin.py -------------------------------------------------------------------------------- /userprofiles/auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/auth_backends.py -------------------------------------------------------------------------------- /userprofiles/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/contrib/accountverification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/contrib/accountverification/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/accountverification/admin.py -------------------------------------------------------------------------------- /userprofiles/contrib/accountverification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/accountverification/models.py -------------------------------------------------------------------------------- /userprofiles/contrib/accountverification/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/contrib/accountverification/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/accountverification/tests/test_models.py -------------------------------------------------------------------------------- /userprofiles/contrib/accountverification/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/accountverification/tests/test_views.py -------------------------------------------------------------------------------- /userprofiles/contrib/accountverification/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/accountverification/urls.py -------------------------------------------------------------------------------- /userprofiles/contrib/accountverification/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/accountverification/views.py -------------------------------------------------------------------------------- /userprofiles/contrib/emailverification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/contrib/emailverification/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/emailverification/admin.py -------------------------------------------------------------------------------- /userprofiles/contrib/emailverification/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/emailverification/forms.py -------------------------------------------------------------------------------- /userprofiles/contrib/emailverification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/emailverification/models.py -------------------------------------------------------------------------------- /userprofiles/contrib/emailverification/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/contrib/emailverification/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/emailverification/tests/test_views.py -------------------------------------------------------------------------------- /userprofiles/contrib/emailverification/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/emailverification/urls.py -------------------------------------------------------------------------------- /userprofiles/contrib/emailverification/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/emailverification/views.py -------------------------------------------------------------------------------- /userprofiles/contrib/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/contrib/profiles/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/profiles/forms.py -------------------------------------------------------------------------------- /userprofiles/contrib/profiles/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /userprofiles/contrib/profiles/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/contrib/profiles/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/profiles/tests/test_views.py -------------------------------------------------------------------------------- /userprofiles/contrib/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/profiles/urls.py -------------------------------------------------------------------------------- /userprofiles/contrib/profiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/contrib/profiles/views.py -------------------------------------------------------------------------------- /userprofiles/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/forms.py -------------------------------------------------------------------------------- /userprofiles/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /userprofiles/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /userprofiles/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/mixins.py -------------------------------------------------------------------------------- /userprofiles/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /userprofiles/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/settings.py -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/email_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/email_change.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/email_change_requested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/email_change_requested.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/logged_out.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/login.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/mails/activation_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/mails/activation_email.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/mails/activation_email_subject.html: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans "Account activation" %} 2 | -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/mails/emailverification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/mails/emailverification.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/mails/emailverification_subject.html: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans "E-mail confirmation" %} 2 | -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/mails/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/mails/password_reset_email.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/password_change.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/password_change_done.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/password_reset.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/password_reset_complete.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/password_reset_confirm.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/password_reset_done.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/profile.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/profile_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/profile_change.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/registration.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/registration_activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/registration_activate.html -------------------------------------------------------------------------------- /userprofiles/templates/userprofiles/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/templates/userprofiles/registration_complete.html -------------------------------------------------------------------------------- /userprofiles/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofiles/tests/test_auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/tests/test_auth_backends.py -------------------------------------------------------------------------------- /userprofiles/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/tests/test_forms.py -------------------------------------------------------------------------------- /userprofiles/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/tests/test_settings.py -------------------------------------------------------------------------------- /userprofiles/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/tests/test_utils.py -------------------------------------------------------------------------------- /userprofiles/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/tests/test_views.py -------------------------------------------------------------------------------- /userprofiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/urls.py -------------------------------------------------------------------------------- /userprofiles/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/utils.py -------------------------------------------------------------------------------- /userprofiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrdev/django-userprofiles/HEAD/userprofiles/views.py --------------------------------------------------------------------------------