8 | | 6. subclass any class that uses the `login_required` decorator, that is, `PasswordChangeView`, `PasswordChangeDoneView` |
9 | | * if a custom class uses the decorator, one has to remember to modify it as well |
10 | | 7. subclass any class that uses the `user_passes_test` decorator (currently only in Admin) |
11 | | * if a custom class uses the decorator, one has to remember to modify it as well |
| 8 | 6. subclass any view that uses the `login_required` decorator, that is, `PasswordChangeView`, `PasswordChangeDoneView` |
| 9 | * if a custom view uses the decorator, one has to remember to modify it as well |
| 10 | 7. subclass any view that uses the `user_passes_test` decorator (currently only in Admin) |
| 11 | * if a custom view uses the decorator, one has to remember to modify it as well |