Thanks for the update. 

I wanted to know whether I cant import the function from the python module 
that contains the print 'message delivered' to the HTML view and have it 
printed e.g. 
{{extend 'layout.html'}}
{{=test()}}

OR do I have to change the python code.

Kind regards
On Thursday, May 22, 2014 5:47:56 PM UTC+3, Anthony wrote:
>
> Are you saying you need to know how to import code from a module, or just 
> that you want to know how to have text show up in an HTML page? If the 
> latter, it is just:
>
> {{=some_string}}
>
> For example, you might have a web2py action like this:
>
> def index():
>     return dict(message='Message delivered')
>
> And in the view:
>
> {{=message}}
>
> Anthony
>
> On Thursday, May 22, 2014 1:17:07 AM UTC-4, Maurice Waka wrote:
>>
>> I have this example code in python module:
>>
>> def test():
>>     .........code
>>     print('Message delivered')
>> test()
>>
>> How do I import such a function to* print* in the html view the same 
>> message as in the python code?
>>
>

-- 
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