-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
107 lines (103 loc) · 3.7 KB
/
options.html
File metadata and controls
107 lines (103 loc) · 3.7 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<title>Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="mainContainer">
<h2>Halo Helper</h2>
<div id="extensionVersionLabel" style="margin-top:-10px;margin-bottom:16px;color:#555;font-size:14px;">Version: -</div>
<table style="text-align:left;font-size:18px;width: 650px;">
<tr class="sectionRow">
<td colspan="2">HaloPSA</td>
</tr>
<tr class="spaceRow">
<tr class="spaceRow">
<td colspan="2"></td>
</tr>
<tr>
<td>Halo/ITSM Domain (e.g. company.halopsa.com)</td>
<td>
<input type="text" id="haloDomainTextBox" style="width:200px;">
</td>
</tr> <tr>
<td>Add "formatted copy" button to ticket page</td>
<td>
<label class="switch">
<input id="haloAddFormattedCopyButtonCheckbox" type="checkbox">
<span class="slider round"></span>
</label>
</td>
</tr>
<tr>
<td>Number of tickets to keep in history</td>
<td>
<input type="textbox" id="haloTicketHistoryMaxTextBox" style="width:50px;">
</td>
</tr>
<tr>
<td>Replace date slashes (/) with dashes (-)</td>
<td>
<label class="switch">
<input id="haloPlanDateDashesCheckbox" type="checkbox">
<span class="slider round"></span>
</label>
</td>
</tr>
<tr class="sectionRow">
<td colspan="2">Plandate module</td>
</tr>
<tr class="spaceRow">
<td colspan="2"></td>
</tr>
<tr>
<td>Enable Plandate module</td>
<td>
<label class="switch">
<input id="haloPlanDateEnabledCheckbox" type="checkbox">
<span class="slider round"></span>
</label>
</td>
</tr>
<tr>
<td>Plandate custom field ID</td>
<td>
<input type="number" id="haloPlanDateFieldIdTextBox" style="width:80px;" min="1">
</td>
</tr>
<tr>
<td>Plandate column name in ticket list</td>
<td>
<input type="text" id="haloPlanDateFieldNameTextBox" style="width:200px;">
</td>
</tr>
<tr class="sectionRow">
<td colspan="2">Awaiting Review module</td>
</tr>
<tr class="spaceRow">
<td colspan="2"></td>
</tr>
<tr>
<td>Group-select rows by ticket ID on click</td>
<td>
<label class="switch">
<input id="haloAwaitingReviewEnabledCheckbox" type="checkbox">
<span class="slider round"></span>
</label>
</td>
</tr>
<tr class="spaceRow">
<td colspan="2"></td>
</tr>
<tr class="buttonRow">
<td colspan="2">
<button id="resetButton" style="width:150px">Reset</button>
<button id="saveButton" style="width:150px">Save</button>
</td>
</tr>
</table>
</div>
<script src="options.js"></script>
</body>
</html>