Changes between Initial Version and Version 1 of Ticket #16931
- Timestamp:
- Sep 25, 2011, 3:50:16 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16931
- Property Triage Stage Unreviewed → Accepted
-
Ticket #16931 – Description
initial v1 2 2 3 3 For example: 4 4 {{{ 5 5 class CommentMixin(FormMixin, SingleObjectMixin): 6 6 pass 7 7 }}} 8 8 In that case, we expect both FormMixin and SingleObjectMixin to build their context. 9 9 However, as none of them use super in their get_context_data do use super, we only get the FormMixin context.