summaryrefslogtreecommitdiff
path: root/core/views
diff options
context:
space:
mode:
Diffstat (limited to 'core/views')
-rw-r--r--core/views/admin_dashboard_main.html.php2
-rw-r--r--core/views/admin_dashboard_sidebar.html.php14
2 files changed, 16 insertions, 0 deletions
diff --git a/core/views/admin_dashboard_main.html.php b/core/views/admin_dashboard_main.html.php
new file mode 100644
index 00000000..cfe7bac2
--- /dev/null
+++ b/core/views/admin_dashboard_main.html.php
@@ -0,0 +1,2 @@
+<?php defined("SYSPATH") or die("No direct script access.") ?>
+<?= $theme->admin_dashboard_blocks() ?>
diff --git a/core/views/admin_dashboard_sidebar.html.php b/core/views/admin_dashboard_sidebar.html.php
new file mode 100644
index 00000000..b9bce0ef
--- /dev/null
+++ b/core/views/admin_dashboard_sidebar.html.php
@@ -0,0 +1,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() ?>