Anthony generally I like to separate backoffice/management functions from 
front office actions. So one hierarchy I like to do is to have a "manage" 
controller, then I have a controller for each entity that will be managed. 
So I would like to do something like:

# these are all controller functions for front office actions
persons.py
cars.py
# then I would like to have the controllers for back office stuff
manage/persons.py
manage/cars.py

It's true that one can always move the back office to completely separate 
application, but that introduces problems of code duplication or deploy 
complexity when almost everything is shared between the backoffice and the 
front.

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to