|
From: Benjamin C. <bc...@us...> - 2001-08-04 03:39:02
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv22789/templates/default
Modified Files:
report.html
Log Message:
Allow for reporting on specific projects as well as all projects
Index: report.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/report.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- report.html 2001/08/03 20:12:31 1.2
+++ report.html 2001/08/04 03:38:58 1.3
@@ -2,8 +2,18 @@
.header-col { font-weight: bold; }
.center-col { text-align: center; }
</style>
+
+<form action="{me}">
+Bug statistics for
+<select name="projectid" onChange="document.location.href='{me}?projectid='+this.options[this.selectedIndex].value">
+ <option value="0">All projects</option>
+ {projects}
+</select>
+<input type="submit" value="Go">
+</form>
+
<h3>{reporttitle}</h3>
-<table border="0" cellspacing="0" cellpadding="4">
+<table border="0" cellpadding="4">
<!-- BEGIN row -->
<tr bgcolor="{bgcolor}">
<!-- BEGIN col -->
|