blob: b9bce0efdc6318cf9449907ff3ea1805b9338fd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gAvailableBlocks" class="gBlock">
<form class="gBlockContent">
<fieldset>
<legend>Add Dashboard Blocks</legend>
<label for="">Available blocks</label>
<select name="" id="">
<option>Somthing</option>
<option>Somthing else</option>
</select>
</fieldset>
</form>
</div>
<?= $theme->admin_sidebar_blocks() ?>
|