|
From: Benjamin C. <bc...@us...> - 2002-02-28 18:23:37
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv21611/templates/default
Modified Files:
user.html
Log Message:
Allow the user to review and delete bug votes
Index: user.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/user.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- user.html 20 Aug 2001 23:16:50 -0000 1.2
+++ user.html 28 Feb 2002 18:23:31 -0000 1.3
@@ -31,25 +31,49 @@
<form action="{me}" method="post">
<input type="hidden" name="do" value="changecolumnlist">
<table border="0" cellpadding="0" cellspacing="0" width="600">
- <tr>
- <td width="600"><b>Bug List Columns</b></td>
- </tr>
- <tr>
- <td width="600">Choose the fields you want to see in the bug list</td>
- </tr>
- <!-- BEGIN column_list_row -->
- <tr>
- <td>
- <input type="checkbox" name="column_list[]" value="{column_name}" {checked}>
- {column_title}
- </td>
- </tr>
- <!-- END column_list_row -->
- <tr>
- <td>
- <input type="reset">
- <input type="submit" value="Submit">
- </td>
- </tr>
- </table>
+ <td width="300">
+ <table border="0" cellpadding="0" cellspacing="0" width="300">
+ <tr>
+ <td width="300"><b>Bug List Columns</b></td>
+ </tr>
+ <tr>
+ <td width="600">Choose the fields you want to see in the bug list</td>
+ </tr>
+ <!-- BEGIN column_list_row -->
+ <tr>
+ <td>
+ <input type="checkbox" name="column_list[]" value="{column_name}" {checked}>
+ {column_title}
+ </td>
+ </tr>
+ <!-- END column_list_row -->
+ <tr>
+ <td>
+ <input type="reset">
+ <input type="submit" value="Submit">
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td valign="top">
+ <!-- BEGIN votesblock -->
+ <b>Votes</b>
+ <table border="0" cellpadding="1" cellspacing="1" width="300">
+ <tr>
+ <th>Bug</th>
+ <th>When</th>
+ <th></th>
+ </tr>
+ <!-- BEGIN vote_row -->
+ <tr>
+ <td class="{trclass}" bgcolor="{bgcolor}" align="center"><a href="bug.php?op=show&bugid={bugid}">#{bugid}</a></td>
+ <td class="{trclass}" bgcolor="{bgcolor}" align="center">{date}</td>
+ <td class="{trclass}" bgcolor="{bgcolor}" align="center"><a href="{me}?op=delvote&bugid={bugid}" onClick="return confirm('Are you sure you want to delete this vote?');">Delete</a></td>
+ </tr>
+ <!-- END vote_row -->
+ </table>
+ <!-- END votesblock -->
+ </td>
+ </tr>
+</table>
</form>
|