Metadata-Version: 2.1
Name: django-userextensions
Version: 0.0.4
Summary: A user extension module for django
Home-page: https://github.com/davidslusser/django-userextensions
Author: David Slusser
Author-email: dbslusser@gmail.com
License: GPL-3.0
Download-URL: https://github.com/davidslusser/django-userextensions/archive/0.0.4.tar.gz
Keywords: django,helpers,extension,user,profile
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: django (>=2.0.12)
Requires-Dist: django-braces (>=1.13.0)
Requires-Dist: django-handyhelpers (>=0.0.7)
Requires-Dist: djangorestframework (>=3.9.4)

django-userprofile
===============
A user extension module for django. This includes some basic user profile settings and 
tracking of a users favorites and recently visited urls within the project. 


Documentation
-------------
Full documentation can be found on http://django-userextensions.readthedocs.org. 
Documentation source files are available in the docs folder.


Installation 
------------
- pip install django-userextensions
- add userextensions to your INSTALLED_APPS
- to include recents tracking, add 'userextensions.middleware.UserRecentsMiddleware' to your middleware
- to include views to manage favorites and recents, in the project-level urls.py file add the following to your urls.py:
    from userextensions.urls import *
    path('', include('userextensions.urls'), ), 
- run migrations python ./manage.py migrate userextensions


License
-------
django-userextensions is licensed under the MIT license (see the LICENSE file for details).


