Mój układ nie jest ładowany w widoku administracyjnym Magento

Oto mój kontroler

<?php
class Desbest_Brands_Adminhtml_BrandController extends Mage_Adminhtml_Controller_action {
    public function indexAction() {
        //echo "showing 123 works!";
        $this->loadLayout(); $this->renderLayout();
    }

A oto mój układ

<?xml version="1.0"?>
<layout version="1.0.0">
<brands_adminhtml_brand_index>
    <reference name="content">
        <block type="brands/adminhtml_brand" name="brand" />
        <block type="newsletter/subscribe" name="left.newsletter" template="newsletter/subscribe.phtml"/>
    </reference>
</brands_adminhtml_brand_index>
</layout>

Jednak nic nie ładuje się, gdy pokazuję widok w moim administratorze, nawet w formularzu subskrybowania wiadomości e-mail.

questionAnswers(1)

yourAnswerToTheQuestion