Hello,
I am trying to display the NewAccount template in jetspeed under it's own tab. I have added the following to my portlet registry: <portlet-entry name="CreateNewAccount" hidden="false" type="ref" parent="Velocity" application="false"> <meta-info> <title>Create New Account</title> <description>Create a new Account in system</description> </meta-info> <parameter name="template" value="NewAccount" hidden="true"/> </portlet-entry> and in the default.psml for anon: <portlets id="107"> <security-ref parent="anon-view_admin-all"/> <metainfo> <title>Create a new Account</title> </metainfo> <portlets id="108"> <controller name="OneColumn"/> <entry id="109" parent="CreateNewAccount"/> </portlets> </portlets> I am getting the following error: The tab gets created, but when clicked I get: org.apache.turbine.util.TurbineException: Error rendering Velocity template: null instead of the form I am trying to display. Essentially, I am trying to display the create new account screen under it's own tab (vs having to click the create new account link) Any help is appreciated! Amin