hello,
I discovered that when I generate scaffolding, it saves it at views root.
could it be possible to move this views/<newly created folder>/template.php?
thanks
BR
if you want use other template from other folder add public variable to your controller named as $template with value '<newly created folder>/template' or etc
<code>
Class Controller_Your extends Controller_Template{
public $template='<newly created folder>/template';
}
</code>