@coriscus Yes, it is possible. I found a trick with which you use the frontend template from admin.
public function __construct()
{
parent::__construct();
$this->setData('area','frontend');
$this->setTemplate('customer/online.phtml');
}
just set the required area in the block constructor.
source
share