django-restit 4.1.60__py3-none-any.whl → 4.1.62__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- account/rpc/group.py +1 -0
- {django_restit-4.1.60.dist-info → django_restit-4.1.62.dist-info}/METADATA +1 -1
- {django_restit-4.1.60.dist-info → django_restit-4.1.62.dist-info}/RECORD +16 -13
- incident/migrations/0010_incident_category_incident_component_id.py +23 -0
- incident/migrations/0011_ticket.py +38 -0
- incident/models/__init__.py +1 -0
- incident/models/event.py +28 -2
- incident/models/incident.py +67 -36
- incident/models/ticket.py +65 -0
- incident/rpc.py +6 -0
- incident/templates/email/incident_change.html +347 -436
- incident/templates/email/incident_plain.html +27 -9
- incident/tq.py +14 -6
- rest/__init__.py +1 -1
- {django_restit-4.1.60.dist-info → django_restit-4.1.62.dist-info}/LICENSE.md +0 -0
- {django_restit-4.1.60.dist-info → django_restit-4.1.62.dist-info}/WHEEL +0 -0
@@ -1,443 +1,354 @@
|
|
1
|
-
{% load humanize %}
|
2
1
|
<!doctype html>
|
3
|
-
<html>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
2
|
+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
3
|
+
|
4
|
+
<head>
|
5
|
+
<title>INCIDENT EMAIL</title>
|
6
|
+
<!--[if !mso]><!-- -->
|
7
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
8
|
+
<!--<![endif]-->
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
10
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
11
|
+
<style type="text/css">
|
12
|
+
#outlook a {
|
13
|
+
padding: 0;
|
14
|
+
}
|
15
|
+
|
16
|
+
body {
|
17
|
+
margin: 0;
|
18
|
+
padding: 0;
|
19
|
+
-webkit-text-size-adjust: 100%;
|
20
|
+
-ms-text-size-adjust: 100%;
|
21
|
+
}
|
22
|
+
|
23
|
+
table,
|
24
|
+
td {
|
25
|
+
border-collapse: collapse;
|
26
|
+
mso-table-lspace: 0pt;
|
27
|
+
mso-table-rspace: 0pt;
|
28
|
+
}
|
29
|
+
|
30
|
+
img {
|
31
|
+
border: 0;
|
32
|
+
height: auto;
|
33
|
+
line-height: 100%;
|
34
|
+
outline: none;
|
35
|
+
text-decoration: none;
|
36
|
+
-ms-interpolation-mode: bicubic;
|
37
|
+
}
|
38
|
+
|
39
|
+
p {
|
40
|
+
display: block;
|
41
|
+
margin: 13px 0;
|
42
|
+
}
|
43
|
+
</style>
|
44
|
+
<!--[if mso]>
|
45
|
+
<xml>
|
46
|
+
<o:OfficeDocumentSettings>
|
47
|
+
<o:AllowPNG/>
|
48
|
+
<o:PixelsPerInch>96</o:PixelsPerInch>
|
49
|
+
</o:OfficeDocumentSettings>
|
50
|
+
</xml>
|
51
|
+
<![endif]-->
|
52
|
+
<!--[if lte mso 11]>
|
53
|
+
<style type="text/css">
|
54
|
+
.mj-outlook-group-fix { width:100% !important; }
|
55
|
+
</style>
|
56
|
+
<![endif]-->
|
57
|
+
<!--[if !mso]><!-->
|
58
|
+
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,700" rel="stylesheet" type="text/css">
|
59
|
+
<style type="text/css">
|
60
|
+
@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,700);
|
61
|
+
</style>
|
62
|
+
<!--<![endif]-->
|
63
|
+
<style type="text/css">
|
64
|
+
@media only screen and (min-width:480px) {
|
65
|
+
.mj-column-per-100 {
|
66
|
+
width: 100% !important;
|
67
|
+
max-width: 100%;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
</style>
|
71
|
+
<style type="text/css">
|
72
|
+
@media only screen and (max-width:480px) {
|
73
|
+
table.mj-full-width-mobile {
|
74
|
+
width: 100% !important;
|
75
|
+
}
|
76
|
+
|
77
|
+
td.mj-full-width-mobile {
|
78
|
+
width: auto !important;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
</style>
|
82
|
+
<style type="text/css">
|
83
|
+
a,
|
84
|
+
span,
|
85
|
+
td,
|
86
|
+
th {
|
87
|
+
-webkit-font-smoothing: antialiased !important;
|
88
|
+
-moz-osx-font-smoothing: grayscale !important;
|
89
|
+
}
|
90
|
+
</style>
|
91
|
+
</head>
|
92
|
+
|
93
|
+
<body style="background-color:white;">
|
94
|
+
|
95
|
+
<div style="display:none;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;"> {{incident.description}} </div>
|
96
|
+
<div style="background-color:white;">
|
97
|
+
<!--[if mso | IE]>
|
98
|
+
<table
|
99
|
+
align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600"
|
100
|
+
>
|
101
|
+
<tr>
|
102
|
+
<td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
|
103
|
+
<![endif]-->
|
104
|
+
<div style="margin:0px auto;max-width:800px;">
|
105
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
|
106
|
+
<tbody>
|
107
|
+
<tr>
|
108
|
+
<td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
|
109
|
+
<!--[if mso | IE]>
|
110
|
+
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
111
|
+
|
112
|
+
<tr>
|
12
113
|
|
13
|
-
|
114
|
+
<td
|
115
|
+
class="" style="vertical-align:top;width:600px;"
|
116
|
+
>
|
117
|
+
<![endif]-->
|
118
|
+
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
119
|
+
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
120
|
+
<tr>
|
121
|
+
<td style="font-size:0px;word-break:break-word;">
|
122
|
+
<!--[if mso | IE]>
|
123
|
+
|
124
|
+
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td height="20" style="vertical-align:top;height:20px;">
|
14
125
|
|
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
|
-
display: block;
|
56
|
-
margin: 0 auto !important;
|
57
|
-
/* makes it centered */
|
58
|
-
max-width: 980px;
|
59
|
-
padding: 10px;
|
60
|
-
}
|
61
|
-
|
62
|
-
/* This should also be a block element, so that it will fill 100% of the .container */
|
63
|
-
.content {
|
64
|
-
box-sizing: border-box;
|
65
|
-
display: block;
|
66
|
-
margin: 0 auto;
|
67
|
-
max-width: 980px;
|
68
|
-
padding: 10px;
|
69
|
-
}
|
70
|
-
|
71
|
-
/* -------------------------------------
|
72
|
-
HEADER, FOOTER, MAIN
|
73
|
-
------------------------------------- */
|
74
|
-
.main {
|
75
|
-
/*background: #ffffff;*/
|
76
|
-
background: #343a40;
|
77
|
-
color: white;
|
78
|
-
border-radius: 3px;
|
79
|
-
width: 100%;
|
80
|
-
}
|
81
|
-
|
82
|
-
.wrapper {
|
83
|
-
box-sizing: border-box;
|
84
|
-
padding: 20px;
|
85
|
-
}
|
86
|
-
|
87
|
-
.content-block {
|
88
|
-
padding-bottom: 10px;
|
89
|
-
padding-top: 10px;
|
90
|
-
}
|
91
|
-
|
92
|
-
.footer {
|
93
|
-
clear: both;
|
94
|
-
margin-top: 10px;
|
95
|
-
text-align: center;
|
96
|
-
width: 100%;
|
97
|
-
}
|
98
|
-
.footer td,
|
99
|
-
.footer p,
|
100
|
-
.footer span,
|
101
|
-
.footer a {
|
102
|
-
color: #999999;
|
103
|
-
font-size: 12px;
|
104
|
-
text-align: center;
|
105
|
-
}
|
106
|
-
|
107
|
-
/* -------------------------------------
|
108
|
-
TYPOGRAPHY
|
109
|
-
------------------------------------- */
|
110
|
-
h1,
|
111
|
-
h2,
|
112
|
-
h3,
|
113
|
-
h4 {
|
114
|
-
color: #000000;
|
115
|
-
font-family: sans-serif;
|
116
|
-
font-weight: 400;
|
117
|
-
line-height: 1.4;
|
118
|
-
margin: 0;
|
119
|
-
margin-bottom: 30px;
|
120
|
-
}
|
121
|
-
|
122
|
-
h1 {
|
123
|
-
font-size: 35px;
|
124
|
-
font-weight: 300;
|
125
|
-
text-align: center;
|
126
|
-
text-transform: capitalize;
|
127
|
-
}
|
128
|
-
|
129
|
-
p,
|
130
|
-
ul,
|
131
|
-
ol {
|
132
|
-
font-family: sans-serif;
|
133
|
-
font-size: 14px;
|
134
|
-
font-weight: normal;
|
135
|
-
margin: 0;
|
136
|
-
margin-bottom: 15px;
|
137
|
-
}
|
138
|
-
p li,
|
139
|
-
ul li,
|
140
|
-
ol li {
|
141
|
-
list-style-position: inside;
|
142
|
-
margin-left: 5px;
|
143
|
-
}
|
144
|
-
|
145
|
-
a {
|
146
|
-
color: #FCC431;
|
147
|
-
text-decoration: underline;
|
148
|
-
}
|
149
|
-
|
150
|
-
/* -------------------------------------
|
151
|
-
BUTTONS
|
152
|
-
------------------------------------- */
|
153
|
-
.btn {
|
154
|
-
box-sizing: border-box;
|
155
|
-
width: 100%; }
|
156
|
-
.btn > tbody > tr > td {
|
157
|
-
padding-bottom: 15px; }
|
158
|
-
.btn table {
|
159
|
-
width: auto;
|
160
|
-
}
|
161
|
-
.btn table td {
|
162
|
-
background-color: #ffffff;
|
163
|
-
border-radius: 5px;
|
164
|
-
text-align: center;
|
165
|
-
}
|
166
|
-
.btn a {
|
167
|
-
background-color: #ffffff;
|
168
|
-
border: solid 1px #FCC431;
|
169
|
-
border-radius: 5px;
|
170
|
-
box-sizing: border-box;
|
171
|
-
color: #FCC431;
|
172
|
-
cursor: pointer;
|
173
|
-
display: inline-block;
|
174
|
-
font-size: 14px;
|
175
|
-
font-weight: bold;
|
176
|
-
margin: 0;
|
177
|
-
padding: 12px 25px;
|
178
|
-
text-decoration: none;
|
179
|
-
text-transform: capitalize;
|
180
|
-
}
|
181
|
-
|
182
|
-
.btn-primary table td {
|
183
|
-
background-color: #FCC431;
|
184
|
-
}
|
185
|
-
|
186
|
-
.btn-primary a {
|
187
|
-
background-color: #FCC431;
|
188
|
-
border-color: #FCC431;
|
189
|
-
color: black;
|
190
|
-
}
|
191
|
-
|
192
|
-
/* -------------------------------------
|
193
|
-
OTHER STYLES THAT MIGHT BE USEFUL
|
194
|
-
------------------------------------- */
|
195
|
-
.last {
|
196
|
-
margin-bottom: 0;
|
197
|
-
}
|
198
|
-
|
199
|
-
.first {
|
200
|
-
margin-top: 0;
|
201
|
-
}
|
202
|
-
|
203
|
-
.align-center {
|
204
|
-
text-align: center;
|
205
|
-
}
|
206
|
-
|
207
|
-
.align-right {
|
208
|
-
text-align: right;
|
209
|
-
}
|
210
|
-
|
211
|
-
.align-left {
|
212
|
-
text-align: left;
|
213
|
-
}
|
214
|
-
|
215
|
-
.clear {
|
216
|
-
clear: both;
|
217
|
-
}
|
218
|
-
|
219
|
-
.mt0 {
|
220
|
-
margin-top: 0;
|
221
|
-
}
|
222
|
-
|
223
|
-
.mb0 {
|
224
|
-
margin-bottom: 0;
|
225
|
-
}
|
226
|
-
|
227
|
-
.preheader {
|
228
|
-
color: transparent;
|
229
|
-
display: none;
|
230
|
-
height: 0;
|
231
|
-
max-height: 0;
|
232
|
-
max-width: 0;
|
233
|
-
opacity: 0;
|
234
|
-
overflow: hidden;
|
235
|
-
mso-hide: all;
|
236
|
-
visibility: hidden;
|
237
|
-
width: 0;
|
238
|
-
}
|
239
|
-
|
240
|
-
.powered-by a {
|
241
|
-
text-decoration: none;
|
242
|
-
}
|
243
|
-
|
244
|
-
hr {
|
245
|
-
border: 0;
|
246
|
-
border-bottom: 1px solid #f6f6f6;
|
247
|
-
margin: 20px 0;
|
248
|
-
}
|
249
|
-
|
250
|
-
/* -------------------------------------
|
251
|
-
RESPONSIVE AND MOBILE FRIENDLY STYLES
|
252
|
-
------------------------------------- */
|
253
|
-
@media only screen and (max-width: 620px) {
|
254
|
-
table.body h1 {
|
255
|
-
font-size: 28px !important;
|
256
|
-
margin-bottom: 10px !important;
|
257
|
-
}
|
258
|
-
table.body p,
|
259
|
-
table.body ul,
|
260
|
-
table.body ol,
|
261
|
-
table.body td,
|
262
|
-
table.body span,
|
263
|
-
table.body a {
|
264
|
-
font-size: 16px !important;
|
265
|
-
}
|
266
|
-
table.body .wrapper,
|
267
|
-
table.body .article {
|
268
|
-
padding: 10px !important;
|
269
|
-
}
|
270
|
-
table.body .content {
|
271
|
-
padding: 0 !important;
|
272
|
-
}
|
273
|
-
table.body .container {
|
274
|
-
padding: 0 !important;
|
275
|
-
width: 100% !important;
|
276
|
-
}
|
277
|
-
table.body .main {
|
278
|
-
border-left-width: 0 !important;
|
279
|
-
border-radius: 0 !important;
|
280
|
-
border-right-width: 0 !important;
|
281
|
-
}
|
282
|
-
table.body .btn table {
|
283
|
-
width: 100% !important;
|
284
|
-
}
|
285
|
-
table.body .btn a {
|
286
|
-
width: 100% !important;
|
287
|
-
}
|
288
|
-
table.body .img-responsive {
|
289
|
-
height: auto !important;
|
290
|
-
max-width: 100% !important;
|
291
|
-
width: auto !important;
|
292
|
-
}
|
293
|
-
}
|
294
|
-
|
295
|
-
/* -------------------------------------
|
296
|
-
PRESERVE THESE STYLES IN THE HEAD
|
297
|
-
------------------------------------- */
|
298
|
-
@media all {
|
299
|
-
.ExternalClass {
|
300
|
-
width: 100%;
|
301
|
-
}
|
302
|
-
.ExternalClass,
|
303
|
-
.ExternalClass p,
|
304
|
-
.ExternalClass span,
|
305
|
-
.ExternalClass font,
|
306
|
-
.ExternalClass td,
|
307
|
-
.ExternalClass div {
|
308
|
-
line-height: 100%;
|
309
|
-
}
|
310
|
-
.apple-link a {
|
311
|
-
color: inherit !important;
|
312
|
-
font-family: inherit !important;
|
313
|
-
font-size: inherit !important;
|
314
|
-
font-weight: inherit !important;
|
315
|
-
line-height: inherit !important;
|
316
|
-
text-decoration: none !important;
|
317
|
-
}
|
318
|
-
#MessageViewBody a {
|
319
|
-
color: inherit;
|
320
|
-
text-decoration: none;
|
321
|
-
font-size: inherit;
|
322
|
-
font-family: inherit;
|
323
|
-
font-weight: inherit;
|
324
|
-
line-height: inherit;
|
325
|
-
}
|
326
|
-
.btn-primary table td:hover {
|
327
|
-
background-color: #34495e !important;
|
328
|
-
}
|
329
|
-
.btn-primary a:hover {
|
330
|
-
background-color: #34495e !important;
|
331
|
-
border-color: #34495e !important;
|
332
|
-
}
|
333
|
-
}
|
334
|
-
|
335
|
-
</style>
|
336
|
-
</head>
|
337
|
-
<body>
|
338
|
-
<span class="preheader">{{incident.description}}</span>
|
339
|
-
<table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body">
|
340
|
-
<tr>
|
341
|
-
<td> </td>
|
342
|
-
<td class="container">
|
343
|
-
<div class="content">
|
344
|
-
|
345
|
-
<!-- START CENTERED WHITE CONTAINER -->
|
346
|
-
<table role="presentation" class="main">
|
347
|
-
|
348
|
-
<!-- START MAIN CONTENT AREA -->
|
349
|
-
<tr>
|
350
|
-
<td class="wrapper">
|
126
|
+
<![endif]-->
|
127
|
+
<div style="height:20px;"> </div>
|
128
|
+
<!--[if mso | IE]>
|
129
|
+
|
130
|
+
</td></tr></table>
|
131
|
+
|
132
|
+
<![endif]-->
|
133
|
+
</td>
|
134
|
+
</tr>
|
135
|
+
</table>
|
136
|
+
</div>
|
137
|
+
<!--[if mso | IE]>
|
138
|
+
</td>
|
139
|
+
|
140
|
+
</tr>
|
141
|
+
|
142
|
+
</table>
|
143
|
+
<![endif]-->
|
144
|
+
</td>
|
145
|
+
</tr>
|
146
|
+
</tbody>
|
147
|
+
</table>
|
148
|
+
</div>
|
149
|
+
<!--[if mso | IE]>
|
150
|
+
</td>
|
151
|
+
</tr>
|
152
|
+
</table>
|
153
|
+
|
154
|
+
<table
|
155
|
+
align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600"
|
156
|
+
>
|
157
|
+
<tr>
|
158
|
+
<td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
|
159
|
+
<![endif]-->
|
160
|
+
<div style="background:#4f82f6;background-color:#4f82f6;margin:0px auto;border-radius:4px;max-width:800px;">
|
161
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#4f82f6;background-color:#4f82f6;width:100%;border-radius:4px;border-bottom:1px solid black;">
|
162
|
+
<tbody>
|
163
|
+
<tr>
|
164
|
+
<td style="direction:ltr;font-size:0px;padding:0;text-align:center;">
|
165
|
+
<!--[if mso | IE]>
|
351
166
|
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
<pre style="font-size:
|
384
|
-
</pre>
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
167
|
+
|
168
|
+
<tr>
|
169
|
+
|
170
|
+
<td
|
171
|
+
class="" style="vertical-align:top;width:600px;"
|
172
|
+
>
|
173
|
+
<![endif]-->
|
174
|
+
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
175
|
+
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
176
|
+
<tr>
|
177
|
+
<td style="padding:10px;width:64px;">
|
178
|
+
<img src="https://i.imgur.com/bQM8aTE.png" alt="">
|
179
|
+
</td>
|
180
|
+
<td align="left" style="font-size:0px;padding:0;word-break:break-word;">
|
181
|
+
<div style="font-family:Roboto, Helvetica, Arial, sans-serif;font-size:30px;font-weight:300;line-height:30px;text-align:left;color:#FFFFFF;">
|
182
|
+
|
183
|
+
Incident #{{incident.pk}} on {{incident.hostname}}</div>
|
184
|
+
|
185
|
+
</td>
|
186
|
+
</tr>
|
187
|
+
</table>
|
188
|
+
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;background: #FFFFFF;background-color: #FFFFFF;margin: 0;" width="100%">
|
189
|
+
<tr>
|
190
|
+
<td align="center" style="font-size:0px;padding:10px 25px;word-break:break-word;text-align: center;background: #e4e4e4; background-color: #e4e4e4;">
|
191
|
+
<div style="font-family:Roboto, Helvetica, Arial, sans-serif;font-size:20px;font-weight:300;font-style:italic;line-height:30px;text-align:center;color:#000000;">
|
192
|
+
{{incident.description}}
|
193
|
+
</div>
|
194
|
+
</td>
|
195
|
+
</tr>
|
196
|
+
<tr>
|
197
|
+
<td>
|
198
|
+
<pre style="font-size: 16px; overflow-x: scroll; word-wrap: normal; max-width: 980px; padding: 8px;">{{incident.first_event.details_by_category}}
|
199
|
+
</pre>
|
200
|
+
</td>
|
201
|
+
</tr>
|
202
|
+
{% if history %}
|
203
|
+
<tr>
|
204
|
+
<td>
|
205
|
+
<pre style="font-size: 16px; overflow-x: scroll; word-wrap: normal; max-width: 980px; padding: 8px;">
|
206
|
+
updated by: {% if history %}{{history.by.username}}{% else %}system{% endif %}
|
207
|
+
|
208
|
+
{{history.note}}
|
209
|
+
</pre>
|
210
|
+
</td>
|
211
|
+
</tr>
|
212
|
+
{% endif %}
|
213
|
+
<tr>
|
214
|
+
<td>
|
215
|
+
<div style="font-family:Roboto, Helvetica, Arial, sans-serif;font-size:16;font-weight:300;font-style:italic;line-height:30px;text-align:left;">
|
216
|
+
You can respond to this email with notes or actions. Make sure to leave to blank lines at the end of your email. For actions just include one of these words on its own line: "open", "close", "pause", "ignore".
|
217
|
+
</div>
|
218
|
+
</td>
|
219
|
+
</tr>
|
220
|
+
|
221
|
+
<tr>
|
222
|
+
<td align="center" vertical-align="middle" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
223
|
+
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:separate;line-height:100%;">
|
224
|
+
<tr>
|
225
|
+
<td align="center" bgcolor="#4f82f6" role="presentation" style="border:none;border-radius:3px;cursor:auto;mso-padding-alt:8px 16px;background:#4f82f6;" valign="middle">
|
226
|
+
<a href="{{portal_url}}" style="display: inline-block; background: #4f82f6; color: white; font-family: Roboto, Helvetica, Arial, sans-serif; font-size: 16px; font-weight: bold; line-height: 16px; margin: 0; text-decoration: none; text-transform: none; padding: 12px 20px; mso-padding-alt: 0px; border-radius: 3px;" target="_blank"> VIEW ON PORTAL </a>
|
227
|
+
</td>
|
228
|
+
</tr>
|
229
|
+
</table>
|
230
|
+
</td>
|
231
|
+
</tr>
|
232
|
+
|
233
|
+
|
234
|
+
</table>
|
235
|
+
</div>
|
236
|
+
<!--[if mso | IE]>
|
237
|
+
</td>
|
238
|
+
|
239
|
+
</tr>
|
240
|
+
|
411
241
|
</table>
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
242
|
+
<![endif]-->
|
243
|
+
</td>
|
244
|
+
</tr>
|
245
|
+
</tbody>
|
246
|
+
</table>
|
247
|
+
</div>
|
248
|
+
<!--[if mso | IE]>
|
249
|
+
</td>
|
250
|
+
</tr>
|
251
|
+
</table>
|
252
|
+
|
253
|
+
<table
|
254
|
+
align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600"
|
255
|
+
>
|
256
|
+
<tr>
|
257
|
+
<td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
|
258
|
+
<![endif]-->
|
259
|
+
<div style="margin:20px auto;max-width:800px;">
|
260
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
|
261
|
+
<tbody>
|
262
|
+
<tr>
|
263
|
+
<td style="direction:ltr;font-size:0px;padding:0;text-align:center;">
|
264
|
+
<!--[if mso | IE]>
|
265
|
+
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
266
|
+
|
267
|
+
<tr>
|
268
|
+
|
269
|
+
<td
|
270
|
+
class="" style="vertical-align:top;width:600px;"
|
271
|
+
>
|
272
|
+
<![endif]-->
|
273
|
+
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
274
|
+
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
275
|
+
<tr>
|
276
|
+
<td align="center" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
277
|
+
<div style="text-align: center;">
|
278
|
+
<img src="{{SITE_LOGO}}" height=40>
|
279
|
+
</div>
|
280
|
+
<div style="font-family:Roboto, Helvetica, Arial, sans-serif;font-size:14px;font-weight:300;line-height:20px;text-align:center;color:#000000;">
|
281
|
+
<!-- <a href="#" style="color:#fafafa">Privacy Policy</a> | <a href="#" style="color:#fafafa">Contact Support</a> | <a href="#" style="color:#fafafa">Unsubscribe</a><br /> --> Powered by {{SITE_LABEL}}<br> © 2023 {{settings.COMPANY_LABEL}}
|
282
|
+
</div>
|
283
|
+
</td>
|
284
|
+
</tr>
|
285
|
+
<tr>
|
286
|
+
<td align="center" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
287
|
+
<div style="font-family:Roboto, Helvetica, Arial, sans-serif;font-size:14px;font-weight:300;line-height:20px;text-align:center;color:#000000;">
|
288
|
+
Don't like these emails? <a style="color: #c0c1ff;font-weight: bold;text-decoration: none;" href="{{BASE_URL}}member/unsubscribe/">Unsubscribe</a>.
|
289
|
+
</div>
|
290
|
+
</td>
|
291
|
+
</tr>
|
292
|
+
<tr>
|
293
|
+
<td align="center" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
294
|
+
|
295
|
+
<table
|
296
|
+
align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600"
|
297
|
+
>
|
298
|
+
<tr>
|
299
|
+
<td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
|
300
|
+
<![endif]-->
|
301
|
+
<div style="margin:0px auto;max-width:800px;">
|
302
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
|
303
|
+
<tbody>
|
304
|
+
<tr>
|
305
|
+
<td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
|
306
|
+
<!--[if mso | IE]>
|
307
|
+
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
308
|
+
|
309
|
+
<tr>
|
310
|
+
|
311
|
+
<td
|
312
|
+
class="" style="vertical-align:top;width:600px;"
|
313
|
+
>
|
314
|
+
<![endif]-->
|
315
|
+
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
316
|
+
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
317
|
+
<tr>
|
318
|
+
<td style="font-size:0px;word-break:break-word;">
|
319
|
+
<!--[if mso | IE]>
|
320
|
+
|
321
|
+
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td height="1" style="vertical-align:top;height:1px;">
|
322
|
+
|
323
|
+
<![endif]-->
|
324
|
+
<div style="height:1px;"> </div>
|
325
|
+
<!--[if mso | IE]>
|
326
|
+
|
327
|
+
</td></tr></table>
|
328
|
+
|
329
|
+
<![endif]-->
|
330
|
+
</td>
|
331
|
+
</tr>
|
332
|
+
</table>
|
333
|
+
</div>
|
334
|
+
<!--[if mso | IE]>
|
335
|
+
</td>
|
336
|
+
|
337
|
+
</tr>
|
338
|
+
|
339
|
+
</table>
|
340
|
+
<![endif]-->
|
341
|
+
</td>
|
342
|
+
</tr>
|
343
|
+
</tbody>
|
344
|
+
</table>
|
345
|
+
</div>
|
346
|
+
<!--[if mso | IE]>
|
347
|
+
</td>
|
348
|
+
</tr>
|
349
|
+
</table>
|
350
|
+
<![endif]-->
|
351
|
+
</div>
|
352
|
+
</body>
|
436
353
|
|
437
|
-
</div>
|
438
|
-
</td>
|
439
|
-
<td> </td>
|
440
|
-
</tr>
|
441
|
-
</table>
|
442
|
-
</body>
|
443
354
|
</html>
|