Metadata-Version: 2.1
Name: django-classic-user-accounts
Version: 1.0.22
Summary: A extended user profile for Django.
Home-page: https://www.example.com/
Author: Suman Kumar
Author-email: sumankumar72@gmail.com
License: BSD License
Description: Django Classic User Accounts
        -------
        Detailed documentation is in the "docs" directory.
        
        Quick
        -----------
        `1. Add "ClassicUserAccounts" to your INSTALLED_APPS setting like this::`
        ```
            INSTALLED_APPS = [
                'django.contrib.contenttypes',
        	    'django.contrib.sessions',
        	    'django.contrib.messages',
        	    'django.contrib.staticfiles',
        	    'ClassicUserAccounts',
        	    'sorl.thumbnail',
        	    'django.contrib.admin',
        	    'django.contrib.auth',
        	    ...
            ]
        ```
        `2. Add "AUTH_USER_MODEL" in your settings file like this::`
        ```
        	AUTH_USER_MODEL = 'ClassicUserAccounts.User'
        ```
        
        `3. Add "Middleware" to youe MIDDLEWARE settings like this::`
        ```
        	MIDDLEWARE = [
        	   ...
        	   'ClassicUserAccounts.middleware.ClassicUserAccountsMiddleWare',
        	]
        ```
        
        `4. Add "SITE_NAME" in your settings file like this::`
        ```
            SITE_NAME = 'Your site name'
        ```
        
        `5. Add url in your project.urls file::`
        ```
        	urlpatterns = [
        	    path('accounts/', include('ClassicUserAccounts.urls')),
        		...
        	]
        ```
        `6. Change Skin ::`
        ```
            Avaliable Skins:: [
                'skin-blue',
                'skin-black',
                'skin-red',
                'skin-yellow',
                'skin-purple',
                'skin-green',
                'skin-blue-light',
                'skin-black-light',
                'skin-red-light',
                'skin-yellow-light',
                'skin-purple-light',
                'skin-green-light'
            ]
        
            You have add "ROLE_BASED_SKIN" in your settings file like this::
        
            ROLE_BASED_SKIN = [
                {'role': 'Admin', 'skin_name': 'skin-red'},
                {'role': 'Subscriber', 'skin_name': 'skin-purple'}
            ]
        ```
        `7. Multi theme feature added::`
        ```
            Add THEME_NAME in your settings file to change theme
            THEME_NAME = 'default-theme'  Required
            USER_BASED_THEME = False # Default False
            Available themes : default-theme, theme-1, theme-2, theme-3
        ```
        
        8. Run `python manage.py migrate` to extend django user model.
        
        `9. Start the development server and visit http://127.0.0.1:8000/admin/` to manage user profile (you'll need the Admin app enabled).
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
