-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReleaseScopeChange.template.html
61 lines (57 loc) · 1.82 KB
/
ReleaseScopeChange.template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- Copyright (c) 2012 Rally Software Development Corp. All rights reserved -->
<html>
<head>
<title>Release Scope Change</title>
<meta name="Name" content="App: Release Scope Change" />
<meta name="Version" content="2012.11.19" />
<meta name="Vendor" content="Rally Software" />
<script type="text/javascript" src="/apps/1.29/sdk.js"></script>
<script type="text/javascript">
function onLoad() {
var appCustom = new ReleaseScopeChange();
appCustom.display(dojo.body());
}
rally.addOnLoad(onLoad);
</script>
</head>
<body>
<table>
<tr>
<td class="lbl">
<div id="dropdown"></div>
</td>
<td id="timeboxInfo" class="lbl"></td>
</tr>
<tr>
<td colspan="2">
<div id="wait"></div>
<div id="info_msg"></div>
</td>
</tr>
</table>
<div id="radios" class="lbl">
Show Work:
<label class="lbl">
<input class="radio-lbl" type="radio" name="filterRadioButton" id="all_work" value="All" checked="checked"/> All
</label>
<label class="lbl">
<input class="radio-lbl" type="radio" name="filterRadioButton" id="added_work" value="Added"/> Added
</label>
<label class="lbl">
<input class="radio-lbl" type="radio" name="filterRadioButton" id="removed_work" value="Removed"/> Removed
</label>
<hr width=1050 align="left" size=1 color="#dddddd">
</div>
<table width=1050>
<tr>
<td style='width:37%'></td>
<td>
<div id="aggregate_data" class="agg-table"></div>
</td>
<td style='width:37%'></td>
</tr>
</table>
<div id="table_div"></div>
</body>
</html>