An example is always the best explanation. And using decorators?
Thank you 2011/9/13 Bruno Rocha <[email protected]> > def index(): > if request.args(0) == 'a': > response.view = 'default/a.html' > if request.args(0) == 'b': > response.view = 'default/b.html' > .... > .... >

