You could check out this approach: http://packages.python.org/web2py_utils/paginate.html
{{ }} *ONLY* work in views. The other thing you could consider if you want
to put it in a controller, model or module is using HTML tag helpers like
this:
if page:
previous = A('previous', _href=URL(args=[page-1]))

