|
From: Benjamin C. <bc...@us...> - 2001-11-14 04:11:05
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv25957/templates/default
Modified Files:
bugdisplay.html
Log Message:
Added Previous and Next links for moving to other bugs in the bug list from the bug display page. The links don't show up when searching with no query parameters, and I'm thinking that may be the way it should be
Index: bugdisplay.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- bugdisplay.html 2001/11/08 14:27:35 1.10
+++ bugdisplay.html 2001/11/14 04:11:02 1.11
@@ -1,12 +1,15 @@
<form action="bug.php?op=update&bugid={bugid}" method="post">
<input type="hidden" name="projectid" value="{projectid}">
<input type="hidden" name="last_modified_date" value="{lastmodifieddate}">
-<table border='0' width="640">
+<table border="0" width="640">
<tr>
- <td width="210" colspan="2">
- Bug <b>#{bugid}</b>
- </td>
- <td width="210" colspan="2">
+ <td>Bug <b>#{bugid}</b></td>
+ <td align="right"><b>{prevlink}</b>{prevnextsep}<b>{nextlink}</b></td>
+ </tr>
+</table>
+<table border="0" width="640">
+ <tr>
+ <td width="420" colspan="4">
Reporter: <b>{reporter}</b>
</td>
<td width="210" colspan="2">
|