Sometime I'm lazy
So to make moderation of directory more easy and faster I made that mod, he'll add quicklaunch area to the top of admin panel, every option can be removed or also added easily
Edit your head.html from /admin_tpl/ (or you can just copy/paste, please note that used template - kosmos)
<html>
<head>
<style>
a:link {COLOR: #BDDCB4; TEXT-DECORATION: none}
a:visited {COLOR: #BDDCB4; TEXT-DECORATION: none}
.qlaunch {
font-family: "Verdana";
font-size: x-small;
text-align: center;
color: #FFFFFF;
}
</style>
</head>
<base target="main">
<body bgcolor="#4682B4">
<table width="100%">
<tr>
<td align="left">
<font face="verdana" size="1" color="#FFFFFF"><b>INDEXU <%$indexu_version%> Administrator Control Panel</b>
</td>
<!-- quicklaunch items start -->
<td><span class="qlaunch">
<a href="user_add.php">Add User</a> |
<a href="editor_add.php">Add Editor</a> |
<a href="link_duplicate.php">Duplicate</a> |
<a href="link_bad.php">Broken</a> |
<a href="template_modify.php?theme=kosmos">Edit Templates</a> |
<a href="db_backup.php">DB Backup</a> |
<a href="app_setup.php">Setup</a></span></td>
<!-- quicklaunch items end-->
<td align="right">
<b><a href="../index.php" target="public"><font face="verdana" size="1" color="#FFFFFF">Go to public area</a></b></td>
</tr>
</table>
</body>
</html>
Changes :
New css style .qlaunch
New string <base target="main">
New strings between <!-- quicklaunch items start --> and <!-- quicklaunch items end -->
To add new item to quicklaunch just insert string
<a href="TARGET_URL.php">TITLE</a> |
but don't forget that weight of your browser is only 100%so select items that you use very often



