Metadata-Version: 2.0
Name: django-acc
Version: 0.0.4.dev2
Summary: A simple Django app for account managemnt
Home-page: UNKNOWN
Author: D.V. Nguyen
Author-email: dv@dvnguyen.com
License: MIT
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT 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
Requires-Python: >=3.5
Requires-Dist: django (>=2.0)
Requires-Dist: djangorestframework (>=3.7.7)

DON'T USE ME. I'M BEING USED INTERNALLY ONLY.

Django-acc: Another reusable Django account management application

Installation
============

``pip install django-acc``

Requirements
------------

-  django >= 2.0
-  djangorestframework >= 3.7.7

Configurations
--------------

settings.py
~~~~~~~~~~~

-  Add ``rest_framework`` to INSTALLED\_APPS
-  Add ``django-acc`` to INSTALLED\_APPS

urls.py
~~~~~~~

-  Add ``path('accounts/', include('accounts.urls'))`` to
   ``urlpatterns`` in your project's ``urls.py``

Templates
~~~~~~~~~

-  Make sure that you have a ``base.html`` templates

Features
========

-  Prebuilt ``register``, ``login`` views at ``accounts/register/`` and
   ``accounts/login/``
-  Organization management (WIP)

Concepts
========

*Organization* An organization is a group of accounts. It's optional to
create a new organization, but when a new user is created, a default
organization with the same name is also created.


