Hide keyboard shortcuts

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""" 

2 

3Abstract 

4-------- 

5 

6The passwords app focuses on user password management. 

7 

8Install 

9------- 

10 

11Add ``'superdjango.contrib.accounts.passwords.apps.DefaultConfig',`` to your ``INSTALLED_APPS``. 

12 

13Usage 

14----- 

15 

16Default usage may be invoked by loading the password URLs: 

17 

18.. code-block:: python 

19 

20 # main/urls.py 

21 from superdjango.contrib.accounts.viewsets import AccountsViewSet 

22 

23 passwords = AccountsViewSet(passwords=True) 

24 

25 urlpatterns = [ 

26 ... 

27 path('accounts/passwords/', include(passwords.urls), 

28 ] 

29 

30""" 

31__author__ = "Shawn Davis <shawn@superdjango.com>" 

32__maintainer__ = "Shawn Davis <shawn@superdjango.com>" 

33__version__ = "0.5.0-d"