Django: Breaking up views
Posted
by Brant
on Stack Overflow
See other posts from Stack Overflow
or by Brant
Published on 2010-04-20T14:05:09Z
Indexed on
2010/04/20
14:43 UTC
Read the original article
Hit count: 455
This is really just a "best practices" question...
I find that When developing an app, I often end up with a lot of views.
Is it common practice to break these views up into several view files? In other words... instead of just having views.py, is it common to have views_1.py, views_2.py, views_3.py (but named more appropriately, perhaps by category)?
© Stack Overflow or respective owner