Index: build-queue/admin/index.php
===================================================================
--- build-queue/admin/index.php	(revision 2585)
+++ build-queue/admin/index.php	(revision 2586)
@@ -8,5 +8,5 @@
 		$obj=new Package($_GET['id']);
 		$obj->delete();
-		echo "<h3>Data has been <span style='color:red'>Deleted</span>.</h3>";
+		echo "<h3>Package has been <span style='color:red'>Deleted</span>.</h3>";
 	}
 
@@ -15,5 +15,5 @@
 		$obj->setStatus(TRUE);
 		$obj->save();
-		echo "<h3>Data has been <span style='color:green'>Confirmed</span>.</h3>";
+		echo "<h3>Package has been <span style='color:green'>Confirmed</span>.</h3>";
 	}
 
@@ -22,5 +22,5 @@
 		$obj->setStatus(FALSE);
 		$obj->save();
-		echo "<h3>Data has been <span style='color:navy'>Unconfirmed</span>.</h3>";
+		echo "<h3>Package has been <span style='color:navy'>Unconfirmed</span>.</h3>";
 	}
 }
@@ -42,5 +42,5 @@
 <table border="1">
 <tr>
-<th style='width:120px'>pkg</th>
+<th style='width:120px'>Package</th>
 <th style='width:130px'>Develoer</th>
 <th style='width:90px' >Distro</th>
Index: build-queue/admin/add.php
===================================================================
--- build-queue/admin/add.php	(revision 2585)
+++ build-queue/admin/add.php	(revision 2586)
@@ -10,5 +10,5 @@
 		$OBj->setStatus(TRUE);
 		$OBj->save();
-		echo "<center><h3>Data has been <span style='color:orange'>Saved</span>.</h3></center>";
+		echo "<center><h3>Package has been <span style='color:orange'>Saved</span>.</h3></center>";
 	}
 ?>
Index: build-queue/developers/index.php
===================================================================
--- build-queue/developers/index.php	(revision 2585)
+++ build-queue/developers/index.php	(revision 2586)
@@ -10,5 +10,5 @@
 		$OBj->setDistro($_POST['distro']);
 		$OBj->save();
-		echo "<center><h3>Data has been <span style='color:orange'>Saved</span>.</h3></center>";
+		echo "<center><h3>Package has been <span style='color:orange'>Saved</span>.</h3></center>";
 	}
 ?>
@@ -23,4 +23,5 @@
 </style>
 </head>
+<a href="list.php">Back to List</a><hr />
 <form method="post" >
 <table border="0">
Index: build-queue/developers/list.php
===================================================================
--- build-queue/developers/list.php	(revision 2586)
+++ build-queue/developers/list.php	(revision 2586)
@@ -0,0 +1,35 @@
+<?
+include('../data.php');
+include('../package.php');
+
+$t=new packages ();
+$pkgs=$t->getAll();
+?>
+<html>
+<head>
+<title>Parsix Build Queue System</title>
+<link rel="icon" href="http://parsix.org/html/themes/parsix/images/icon.png" type="image/png" />
+<link rel="shortcut icon" href="http://parsix.org/html/themes/parsix/images/favicon.ico" />
+<link rel="stylesheet" href="http://parsix.org/html/themes/parsix/style/styleNN.css" type="text/css" />
+<style type="text/css">
+@import url("themes/parsix/style/style.css");
+</style>
+</head>
+<a href="index.php">Add New Packages</a><hr />
+<table border="1">
+<tr>
+<th style='width:120px'>Package</th>
+<th style='width:130px'>Develoer</th>
+<th style='width:90px' >Distro</th>
+<th style='width:60px'> Status</th>
+</tr>
+<?
+foreach($pkgs as $pkg) :
+	echo "\t<tr>\n";
+	echo "\t\t<td>".$pkg->getPkgName()."</td>\n";
+	echo "\t\t<td>".$pkg->getDeveloper()."</td>\n";
+	echo "\t\t<td>".$pkg->getDistro()."</td>\n";
+	echo "\t\t<td>". ( ($pkg->getStatus()==TRUE) ?  "Confirmed" : "Not Confirmed") ." </td>\n";
+ 	echo "\t</tr>\n";
+endforeach;
+?>
