>  why for? is it template or just static file?
>

test1.html is just like...

% for item in data:
        <tr>
        % for col in item:

        % endfor
        </tr>
    % endfor


I like to call using iframe.<iframe src="test1.html" />



templates/
test.mako
test1.html

test.mako:

<iframe src="test1.html" />

test1.html

% for item in data:
        <tr>
        % for col in item:

        % endfor
        </tr>



Thanks

Madhu Alagu


>  If test1.html is a template then use it as a template - call
> controller/action. otherwise it's pointless to keep it in template
> folder, which is not available via http requests.
>
>  Best regards
>
>  Cezary Statkiewicz
>
> --
> Cezary Statkiewicz -http://thelirium.net
>    rlu#280280           gg#5223219
>     jabber://[EMAIL PROTECTED]


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to