diff --git a/~dev_rating/application/bootstrap.php b/~dev_rating/application/bootstrap.php
index 6f6d07df683aef451c4367352afda862948e6d13..19dcd3ba3b2a32acce0ebaa93f81e6c78fdc5b63 100644
--- a/~dev_rating/application/bootstrap.php
+++ b/~dev_rating/application/bootstrap.php
@@ -202,14 +202,6 @@ Route::set('common:index', 'index')
 //        'action'     => 'profile'
 //    ]);
 
-// --------------- Support ----------------
-
-Route::set('support:index', 'support(/index)')
-    ->defaults([
-        'directory'  => 'Support',
-        'controller' => 'Index',
-        'action'     => 'index'
-    ]);
 
 // --------------- Students ----------------
 
diff --git a/~dev_rating/application/classes/Controller/Admin/Requests.php b/~dev_rating/application/classes/Controller/Admin/Requests.php
new file mode 100644
index 0000000000000000000000000000000000000000..a225fdac49ae476a6f54ae4bf8a6377e95e11700
--- /dev/null
+++ b/~dev_rating/application/classes/Controller/Admin/Requests.php
@@ -0,0 +1,15 @@
+<?php defined('SYSPATH') or die('No direct script access.');
+
+class Controller_Admin_Requests extends Controller_Environment_Admin
+{
+
+    public function before() {
+        parent::before();
+    }
+
+    public function action_errors() {
+        $this->twig->set_filename('admin/requests/errors');
+    }
+
+}
+            
diff --git a/~dev_rating/application/classes/Controller/Support/Index.php b/~dev_rating/application/classes/Controller/Support/Index.php
deleted file mode 100644
index 4a0ebd0e69292c539cf7655275d5c11b996821c3..0000000000000000000000000000000000000000
--- a/~dev_rating/application/classes/Controller/Support/Index.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php defined('SYSPATH') or die('No direct script access.');
-
-class Controller_Support_Index extends Controller_Environment_Admin
-{
-
-    public function before() {
-        parent::before();
-    }
-
-    public function action_index() {
-        $this->twig->set_filename('support/index');
-    }
-
-}
-            
diff --git a/~dev_rating/application/views/admin/menu/system.twig b/~dev_rating/application/views/admin/menu/system.twig
index a67f566148db3d1a358a6ff14d74436420455243..c440438ab3331f735d7ab35c932ccb08d989932c 100644
--- a/~dev_rating/application/views/admin/menu/system.twig
+++ b/~dev_rating/application/views/admin/menu/system.twig
@@ -6,14 +6,14 @@
             <ul>
                 {# HTML.anchor('admin/log/user', '<li>История действий</li>')|raw #}
                 {# HTML.anchor('admin/log/kohana', '<li>Log-файлы Kohana</li>')|raw #}
-                {# HTML.anchor('admin/requests/errors', '<li>Сообщения об ошибках</li>')|raw #}
+                {{  HTML.anchor('admin/requests/errors', '<li>Сообщения об ошибках</li>')|raw }}
                 {# HTML.anchor('admin/stats', '<li>Статистика использования</li>')|raw #}
                 {# HTML.anchor('admin/sysinfo', '<li>Информация о системе</li>')|raw #}
                 <li class='dev'>История действий</li>
                 <li class='dev'>Log-файлы Kohana</li>
-                <li class='dev'>Сообщения об ошибках</li>
+                {# <li class='dev'>Сообщения об ошибках</li> #}
                 <li class='dev'>Статистика использования</li>
                 <li class='dev'>Информация о системе</li>
             </ul>
     </div>
-</div>   
\ No newline at end of file
+</div>   
diff --git a/~dev_rating/application/views/admin/requests/errors.twig b/~dev_rating/application/views/admin/requests/errors.twig
new file mode 100644
index 0000000000000000000000000000000000000000..d5a91d6174bccb9432a1f079fb9a6ef22c02c6f7
--- /dev/null
+++ b/~dev_rating/application/views/admin/requests/errors.twig
@@ -0,0 +1 @@
+{% extends "admin/base" %}
diff --git a/~dev_rating/application/views/support/index.twig b/~dev_rating/application/views/support/index.twig
deleted file mode 100644
index 6ae7e6ff31a309110e0765d4da1db723feb234c0..0000000000000000000000000000000000000000
--- a/~dev_rating/application/views/support/index.twig
+++ /dev/null
@@ -1,2 +0,0 @@
-{% extends 'base' %}
-