Hello to both qooxdoo and web2py developers!

Check this out :

http://demo.qooxdoo.org/1.6/apiviewer/#qx.bom.Template

Qooxdoo now got a js templating system called mustache JS

http://mustache.github.com/

here is the syntax:

    <script type="template" id="task">
      <li>
        <input id="{{id}}" type="checkbox" {{#done}}checked{{/done}}>
        <label for="{{id}}">{{name}}</label>
      </li>
    </script>


and it conflicts with :

web2py's pythonic templating:
{{for v in vars:}}
   {{=v}}
{{pass}}

How can we resolve this?

Should template checking be avoided for web2py inside  <script
type="template"> ?


I want to use qooxdoo's templating features too coz its almost same with
web2pys ..

Thanks

Phyo.

Reply via email to