|
From: Ulf E. <ulf...@us...> - 2005-10-02 20:50:24
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30027/templates/default/admin Modified Files: project-edit.html Log Message: RFE #815120 -- Replace Created Date with Owner in Component Index: project-edit.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/project-edit.html,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- project-edit.html 27 Aug 2005 13:14:28 -0000 1.16 +++ project-edit.html 2 Oct 2005 20:50:11 -0000 1.17 @@ -99,7 +99,6 @@ <table class="bordertable" align="center"> <tr> <th><?php echo translate("Version"); ?></th> - <th><?php echo translate("Created"); ?></th> <th><?php echo translate("Active"); ?></th> <th><?php echo translate("Sort Order"); ?></th> <th><?php echo translate("Delete"); ?></th> @@ -107,7 +106,6 @@ <?php for ($i = 0, $count = count($versions); $i < $count; $i++) { ?> <tr> <td><a href="project.php?op=edit_version&id=<?php echo $versions[$i]['version_id']; ?>" onClick="popupVersion(<?php echo $versions[$i]['version_id']; ?>); return false;"><?php echo stripslashes(htmlspecialchars($versions[$i]['version_name'])); ?></a></td> - <td align="center"><?php echo date(DATE_FORMAT, $versions[$i]['created_date']); ?></td> <td align="center"><?php echo $versions[$i]['active'] ? translate("Yes") : translate("No"); ?></td> <td align="center"><?php echo $versions[$i]['sort_order']; ?></td> <td align="center"><?php if(!$versions[$i]['bug_count']) { ?><a href="project.php?op=del_version&id=<?php echo $versions[$i]['version_id']; ?>&project_id=<?php echo $project_id; ?>"><?php echo translate("Delete"); ?></a><?php } ?></td> @@ -127,7 +125,7 @@ <table class="bordertable" align="center"> <tr> <th><?php echo translate("Component"); ?></th> - <th><?php echo translate("Created"); ?></th> + <th><?php echo translate("Owner"); ?></th> <th><?php echo translate("Active"); ?></th> <th><?php echo translate("Sort Order"); ?></th> <th><?php echo translate("Delete"); ?></th> @@ -135,7 +133,7 @@ <?php for ($i = 0, $count = count($components); $i < $count; $i++) { ?> <tr> <td><a href="project.php?op=edit_component&id=<?php echo $components[$i]['component_id']; ?>" onClick="popupComponent(<?php echo $components[$i]['component_id']; ?>); return false;"><?php echo stripslashes(htmlspecialchars($components[$i]['component_name'])); ?></a></td> - <td align="center"><?php echo date(DATE_FORMAT, $components[$i]['created_date']); ?></td> + <td align="center"><?php echo lookup('assigned_to', $components[$i]['owner']); ?></td> <td align="center"><?php echo $components[$i]['active'] ? translate("Yes") : translate("No"); ?></td> <td align="center"><?php echo $components[$i]['sort_order']; ?></td> <td align="center"><?php if(!$components[$i]['bug_count']) { ?><a href="project.php?op=del_component&id=<?php echo $components[$i]['component_id']; ?>&project_id=<?php echo $project_id; ?>"><?php echo translate("Delete"); ?></a><?php } ?></td> |