6 ms·
> In my opinion, Django's CBV's are polarizing [..] I feel like inheritance is a poor way of modeling views and reusing code. I share your opinion on CBV. Pers
by wunki 13y ago
> In my opinion, Django's CBV's are polarizing [..] I feel like inheritance is a poor way of modeling views and reusing code.
I share your opinion on CBV. Personally I like the old function-based views because everything happens in that little block of code and I know exactly the order in which something happens. CBV quickly get me lost in the chain of method calls across classes.