I'm trying to access a CP template from the frontend, and i'm doing something like this in my plugin:
<?php
...
$oldMode = craft()->templates->getTemplateMode();
craft()->templates->setTemplateMode(TemplateMode::CP);
$widget = craft()->templates->render('plugin/Plugin_Template', array(
'chatraID' => $chatraID,
));
craft()->templates->setTemplateMode($oldMode);
...
I'm getting the Unable to find the template error, though. I have verified that the plugin is installed, and that the template plugin/Plugin_Template is accessible from the CP.