-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
91 lines (85 loc) · 3.17 KB
/
options.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
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>rrIssues Options</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
<script src="jquery-1.7.2.min.js"></script>
<script src="/bootstrap/js/bootstrap.min.js"></script>
<script src="/jqBootstrapValidation/jqBootstrapValidation.js"></script>
<script src="options.js"></script>
<!--
showGitHubStatus: true,
showIssuesLabels: true,
showIssuesNew: true,
showIssuesClosed: true,
showIssuesMilestones: true,
showIssuesComments: true
-->
</head>
<body>
<div class="container">
<h1>rrIssues Options</h1>
<form class="form-horizontal">
<fieldset>
<legend>Issues</legend>
<div class="control-group">
<label class="control-label">Labels</label>
<div class="controls">
<label class="radio inline">
<input type="radio" name="showIssuesLabels" value="true" checked /> Show
</label>
<label class="radio inline">
<input type="radio" name="showIssuesLabels" value="false" /> Hide
</label>
</div>
</div>
<div class="control-group">
<label class="control-label">New</label>
<div class="controls">
<label class="radio inline">
<input type="radio" name="showIssuesNew" value="true" checked /> Show
</label>
<label class="radio inline">
<input type="radio" name="showIssuesNew" value="false" /> Hide
</label>
</div>
</div>
<div class="control-group">
<label class="control-label">Closed</label>
<div class="controls">
<label class="radio inline">
<input type="radio" name="showIssuesClosed" value="true" checked /> Show
</label>
<label class="radio inline">
<input type="radio" name="showIssuesClosed" value="false" /> Hide
</label>
</div>
</div>
<div class="control-group">
<label class="control-label">Comments</label>
<div class="controls">
<label class="radio inline">
<input type="radio" name="showIssuesComments" value="true" checked /> Show
</label>
<label class="radio inline">
<input type="radio" name="showIssuesComments" value="false" /> Hide
</label>
</div>
</div>
<div class="control-group">
<label class="control-label">Milestones</label>
<div class="controls">
<label class="radio inline">
<input type="radio" name="showIssuesMilestones" value="true" checked /> Show
</label>
<label class="radio inline">
<input type="radio" name="showIssuesMilestones" value="false" /> Hide
</label>
</div>
</div>
</fieldset>
</form>
</div>
</body>
</html>