function render($copy)
 {
     $admin_container = Kohana::config('containers.admin_container');
     $content = new stdClass();
     $content->header = 'Containers Admin';
     $content->sub_header = '';
     $content->copy = $copy;
     containers_helper::render($content, $admin_container);
 }
    <table style="width:30em;">
        <tr>
            <td>
				<strong>Container Name:</strong>
			</td>
			<td>
                <?php 
echo form::input('container_name', '');
?>
            </td>
        </tr>
        <tr>
            <td>
                <strong>Container Template:</strong></td><td>
                <?php 
echo form::dropdown("container_template", containers_helper::get_template_list());
?>
            </td>
        </tr>
    </table>
    <table class="stdtable">
		<thead>
			<tr>
                <th>Plugin</th>
                <th>Template</th>
                <th>Location</th>
                <th>Order</th>
				<th>Actions</th>
        	</tr>
		</thead>
        <tbody id="plugins-tbody">