Subversion Repositories DevTools

Rev

Rev 29 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
17 rsolanki 1
<%
2
'=====================================================
3
'|                                                   |
4
'|				    	REPORTS					     |
5
'|                                                   |
6
'=====================================================
7
%>
8
<%
9
'------------ Variable Definition -------------
10
Dim reportGroup
11
Dim reportGroupsArr
12
'------------ Constants Declaration -----------
13
Const hlColor 	   = "#E3B62D"
14
'------------ Variable Init -------------------
15
'------------ Reports Menu --------------------
16
'reportGroupsArr = Array("Advanced Search", _
17
'						"Release Status", _
18
'						"Release History", _
19
'						"Admin Reports", _
20
'						"Escrow")
29 jtweddle 21
reportGroupsArr = Array("Advanced Search", "Bom Difference", "Bom Merge Manager", "Escrow", "Sbom Issues")
17 rsolanki 22
 
23
'----------------------------------------------
24
%>
25
<table width="100%" border="0" cellspacing="0" cellpadding="0">
26
  	<tr> 
27
   		<td nowrap><img src="images/h_trsp_dot.gif" width="16" height="16" align="absmiddle" vspace="4"></td>
28
  	</tr>
29
  	<tr> 
30
 	   	<td background="images/bg_lite_blue.gif.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
31
  	</tr>
32
	<%
33
	Dim urlLink
34
	For Each reportGroup In reportGroupsArr
35
	urlLink = "reports.asp?group="& Replace( reportGroup, " ", "_")
36
	%>
37
	<%If NOT Replace(reportGroup, " ", "_") = parGroup Then%>
38
	<tr <%=Set_Row_Style( urlLink )%>> 
39
   		<td nowrap><img src="images/i_reports.gif" width="17" height="16" align="absmiddle" vspace="4" hspace="5"><a href="<%=urlLink%>" class="form_txt_link"><%=reportGroup%></a></td>
40
  	</tr>
41
	<%Else%>
42
	<tr> 
43
     	<td nowrap background="images/bg_lght_gray.gif"><img src="images/i_reports.gif" width="17" height="16" align="absmiddle" vspace="4" hspace="5"><a href="<%=urlLink%>" class="form_txt_link"><%=reportGroup%></a></td>
44
   	</tr>
45
	<%End If%>
46
  	<tr> 
47
    	<td background="images/bg_lite_blue.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
48
  	</tr>
49
	<%Next%>
50
</table>
51