I usually add such a special helper function for the application to the utils.py file and use the following role
from myapp.utils import my_cool_func def view_coolness(request): data = my_cool_func(request) return render_to_response("xxx.html")
but it depends on what your assistant does, maybe he modifies the request, maybe part of the middleware, so you need to say what exactly these auxiliary functions do
Anurag Uniyal Dec 16 '09 at 4:50 2009-12-16 04:50
source share