On Sun, Jun 8, 2008 at 1:08 PM, kogu <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I am trying to learn web development in Python as well as Python. So
> pardon the stupid questions for a few days. I promise, I will search
> before posting here.
>
> Why isn't this code not working?
>
> $def with (input)
> $for i in range(10):
> Hello World!
>
> Error is
>
> <type 'exceptions.NameError'> at /dynamic/add
> could not find 'range' (line 2)
You need to add the function to the templates global scope like this:
import template
render = template.render('templates/')
template.Template.globals['range'] = range
Check out templator's documentation:
http://webpy.org/templetor
--
Hermann Käser
http://theragingche.com/
http://semicir.cl/user/hermzz
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---