ecarreras wrote: > I've searched in the wiki for the meaning of the %(some_string)s and > %(some_string)d in the views [...] Somebody can explain me how to use this > sentences and which functions > done?
It's Python code that formats the contents of a dictionary variable. Example:>>> d = {'a': 'this', 'b': 22 } >>> print '%(a)s has %(b)d' % d this has 22 Regards, Geoff ------------------------ Seath Solutions Ltd (http://www.seathsolutions.com) _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman/listinfo/tinyerp-users
