-
Notifications
You must be signed in to change notification settings - Fork 16
/
blitzallpulls.html
79 lines (79 loc) · 3.76 KB
/
blitzallpulls.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head>
<script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- bootstrap-multiselect theme -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-multiselect/0.9.15/css/bootstrap-multiselect.css" />
<!-- Custom Styles for this Extension-->
<link rel="stylesheet" type="text/css" href="styles/blitzallpulls.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="sdk/scripts/VSS.SDK.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-multiselect/0.9.15/js/bootstrap-multiselect.min.js"></script>
<!-- AppInsights -->
<!--script src="scripts/appinsightsblitz.js"></script-->
</head>
<body>
<div class="row">
<button id="toggleOptions" type="button" class="col-md-1 btn btn-dark">Options</button>
<h5 class="col-md-2" align="center">Pull Request Count: <span id="PullRequestCountSpan"></span></h5><h3 class="col-md-6" align="center">Active Pull Requests</h3><h5 class="col-md-3" align="center">Project: <span id="ProjectNameSpan"></span></h5>
</div>
<div class="row" id="filters" style="display:none;">
<div class="col-md-3">
<form role="form">
<div class="checkbox">
<label><input type="checkbox" value="" id="limitReviewerMe"> Only Pull Requests I am a Reviewer.</label>
</div>
<div class="checkbox">
<label><input type="checkbox" value="" id="limitCreatorMe"> Only Pull Requests I am the Creator.</label>
</div>
</form>
<div class="form-group fitFilters">
<label for="sel1">Theme:</label>
<select class="form-control" id="selTheme">
<option>Classic</option>
<option>Small Fade</option>
</select>
</div>
</div>
<div class="col-md-9">
<p><b>Repositories </b></p>
<select id="repositories-select" multiple="multiple"></select>
</div>
</div>
<div class="table-responsive" id="pullRequestTableContainer">
<table class="table table-hover table-striped table-condensed" id="pullRequestTable">
<thead>
<tr>
<th>
ID
</th>
<th>
By
</th>
<th>
Repository
</th>
<th>
Title
</th>
<th>
Creation Date
</th>
<th>
Merge Status
</th>
<th>
Reviewer(s)
</th>
</tr>
</thead>
<tbody id="pullRequestTableBody"></tbody>
</table>
</div>
<script src="scripts/blitzallpulls.js"></script>
</body>
</html>