http://www.perlmonks.org?node_id=390998

johnnywang has asked for the wisdom of the Perl Monks concerning the following question:

Hi, is there something for Template Toolkit that is similar to JSP customer tag libs? Java's Struts provides many taglibs that make it very easy to produce html widgets such as options/selects/radio/checkbox, etc. in the form:
<html:text property="user"/>
which will generate and fill in <input type="text" name="user" value="..."/>. I'm wondering whether TT has something similar. Right now I'm doing everything by hand each time, using something like %FOREACH %. Will the CGI plugin for TT help? since CGI.pm has some of those html widget functions? Thanks.