Changes between Initial Version and Version 1 of Ticket #15215, comment 8
- Timestamp:
- Apr 24, 2012, 8:49:58 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15215, comment 8
initial v1 27 27 28 28 If this approach is acceptable, I'm more than happy to try writing a proper patch and tests for inclusion into django. Comments welcome :) 29 30 If we simply require people to be logged in, we could also check for `login_required` boolean attribute on the view: 31 32 {{{ 33 class MyView(View): 34 login_required = True 35 }}} 36 37 *Edit: added login required check API