Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
3Abstract
4--------
6The passwords app focuses on user password management.
8Install
9-------
11Add ``'superdjango.contrib.accounts.passwords.apps.DefaultConfig',`` to your ``INSTALLED_APPS``.
13Usage
14-----
16Default usage may be invoked by loading the password URLs:
18.. code-block:: python
20 # main/urls.py
21 from superdjango.contrib.accounts.viewsets import AccountsViewSet
23 passwords = AccountsViewSet(passwords=True)
25 urlpatterns = [
26 ...
27 path('accounts/passwords/', include(passwords.urls),
28 ]
30"""
31__author__ = "Shawn Davis <shawn@superdjango.com>"
32__maintainer__ = "Shawn Davis <shawn@superdjango.com>"
33__version__ = "0.5.0-d"