Re: Extending templates dynamically

2011-05-06 Thread Marty Alchin
On Fri, May 6, 2011 at 12:25 PM, Christophe Pettus wrote: > Steal from the best! :)  One additional feature that they added was a dynamic > way of doing {{ extends }}.  Rather than specifying the tag in the template > source, the inheritance path can be specified directly in the > render-equiva

Extending templates dynamically

2011-05-06 Thread Christophe Pettus
Having had to do some PHP programming for the first time in a long time, I discovered that the Smarty template language has taken Django's template inheritance mechanism and adopted it wholesale in version 3: http://www.smarty.net/docs/en/advanced.features.template.inheritance.tpl Steal