logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

HTML::FormHandler::Render::WithTT - tt rendering

Author

       FormHandler Contributors - see HTML::FormHandler

Description

       Uses 'tt_render' instead of 'render' to allow using both TT templates and the built-in rendering.

Name

       HTML::FormHandler::Render::WithTT - tt rendering

Synopsis

       A rendering role for HTML::FormHandler that allows rendering using Template::Toolkit

          package MyApp::Form;
          use HTML::FormHandler::Moose;
          extends 'HTML::FormHandler';
          with 'HTML::FormHandler::Render::WithTT';

          sub build_tt_template { 'user_form.tt' }
          sub build_tt_include_path { ['root/templates'] }
          ....< define form >....

          my $form = MyApp::Form->new(
          $form->tt_render;

       If you want to render with TT, you don't need this role. Just use one of the TT form templates provided,
       form.tt or form_in_one.tt.  If you use this role to render, you are using two different TT engines, with
       different sets of variables, etc, which doesn't make much sense.

       This is mainly useful as a testing aid and an example of using the sample templates.

Version

       version 0.40068

See Also