Changes between Version 1 and Version 2 of Ticket #28779, comment 2


Ignore:
Timestamp:
Nov 13, 2017, 2:54:17 AM (6 years ago)
Author:
Meiyer

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28779, comment 2

    v1 v2  
    664. subclass `PermissionRequiredMixin`
    775. subclass `UserPassesTestMixin`
    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
     86. 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
     107. 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
    12128. build own special treatment of redirection for flat pages that require registration (no subclassing is possible)
    1313
Back to Top