I don't see why you'd want to pile an entire templating system on top of the View layer of Symfony. The whole point of the MVC is to standardize how your application works. If you're finding that you've still got a lot of logic in your view you've gone wrong someplace earlier. Try turning view logic into helpers or rolling it into your model. Remember you should be striving for skinny controllers and fat models with little to no logic on your views.
Symfony's got a pretty powerful way to handle all of this without requiring any sort of Smarty, HAML, etc. involvement. - Keith On Oct 16, 7:22 am, "Lucas Stephanou" <[EMAIL PROTECTED]> wrote: > Hello dev's, > > I'm here to start a thread about template system. > > Today symfony doesn't use natively a template system to render presentation > layer. > IMHO, the genshi project[1], used in trac 0.11[2], is more efficient output > generator and I'm working with it in some plugins to internal use here in my > job. > All php options( OPT, Smarty, Haml port) that I knew isn't simple, clean, > and powerful, this in my opinion. > > Well, What you think about? Is PHP a equivalent option? Start a similar > genshi project in PHP? > > [1]:http://genshi.edgewall.org/ > [2]:http://trac.edgewall.org/milestone/0.11 > > -- > Lucas Stephanou --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony developers" 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/symfony-devs?hl=en -~----------~----~----~----~------~----~------~--~---
