-
Notifications
You must be signed in to change notification settings - Fork 5
/
kanban.html
628 lines (600 loc) · 38.1 KB
/
kanban.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
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
384
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
<!doctype html>
<html ng-app="taskboardApp">
<head>
<title>Outlook Task Board</title>
<meta http-equiv="X-UA-Compatible" content="IE=11">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<!-- <link rel="stylesheet" href="css/bootstrap.min.css"> -->
<link rel="stylesheet" href="css/taskboard.css">
<!-- scripts -->
<script src="lib/jquery.min.js"></script>
<script src="lib/jquery-ui.min.js"></script>
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> -->
<script src="lib/bootstrap.min.js"></script>
<script src="lib/angular.js"></script>
<script src="lib/sortable.min.js"></script>
<script src="lib/moment.min.js"></script>
<script src="lib/minify.json.js"></script>
<script src="lib/deep-diff-0.3.8.min.js"></script>
<script src="js/version.js"></script>
<script src="js/exchange.js"></script>
<script src="js/app.js"></script>
</head>
<body ng-controller="taskboardController" ng-init="init()">
<div ng-if="!isBrowserSupported">
<h1>Sorry, this app can only be run as a Home Page of an Outlook mail folder</h1>
<h2>Set up</h2>
<ul>
<li>Download <a href="https://janware.nl/gitlab/install.zip">this zip file</a></li>
<li>Extract the install.cmd file, and run it</li>
</ul>
<h2>That's it!! Have fun!</h2>
</div>
<div ng-if="isBrowserSupported" class="taskboard container-fluid">
<!-- header bar -->
<section id="headerbar" class="row">
<div ng-if="display_message" class="col-md-12 bg-warning">
<div ng-if="( where=='(offline)' )">
<p><strong>A newer version is available: {{version_number}} (your version is {{version}})</strong>
<a href="{{DOWNLOAD_URL}}" download id="download" class="button">download</a>
<button type="button" class="button" data-toggle="modal" data-target="#myModal">What's new?</button>
</p>
</div>
<div ng-if="( where=='(online)' )">
<p><strong>Upgraded to a newer version: {{version_number}}</strong>
<button type="button" class="button" data-toggle="modal" data-target="#myModal">What's new?</button>
</p>
</div>
</div>
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Version History</h4>
</div>
<div class="modal-body">
<iframe src="https://janware.nl/gitlab/whatsnew.html"
style="border:none;width:100%;height:500px"></iframe>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="col-md-12">
<div class="input-group">
<div class="input-group-addon" ng-click="switchToAppMode();">
<strong>Outlook Taskboard</strong>
</div>
<div class="input-group-addon">
<button id="refreshbutton" class="btn btn-default btn-xs" aria-label="Refresh" type="button"
ng-click="initTasks();"><span class="glyphicon glyphicon-refresh"
aria-hidden="true"></span></button>
</div>
<div ng-show="(filter.search != '')" class="input-group-addon">
<button class="btn btn-default btn-xs" aria-label="Clear" type="button"
ng-click="filter.search = ''"><span class="glyphicon glyphicon-remove"
aria-hidden="true"></span></button>
</div>
<input type="text" name="search" ng-model="filter.search" class="form-control"
placeholder="Filter" />
<div class="input-group-addon">
<select class="btn btn-default btn-xs" ng-model="filter.category">
<option ng-selected="{{category == filter.category}}" ng-repeat="category in categories"
value="{{category}}">
{{category}}
</option>
</select>
</div>
<div class="input-group-addon">
<button class="btn btn-default btn-xs" aria-label="Report" type="button"
ng-click="createReport();"><span class="glyphicon glyphicon-list-alt"
aria-hidden="true"></span></button>
</div>
<div class="input-group-addon">
<span class="glyphicon"
ng-class="{ 'glyphicon-globe' : filter.private == privacyFilter.all.value, 'glyphicon-lock' : filter.private == privacyFilter.private.value, 'glyphicon-briefcase' : filter.private == privacyFilter.public.value }"
aria-hidden="true"></span>
<select class="btn btn-default btn-xs" ng-model="filter.private">
<option value={{privacyFilter.all.value}}>{{privacyFilter.all.text}}</option>
<option value={{privacyFilter.private.value}}>{{privacyFilter.private.text}}</option>
<option value={{privacyFilter.public.value}}>{{privacyFilter.public.text}}</option>
</select>
</div>
<div class="input-group-addon">
<button class="btn btn-default btn-xs" aria-label="Config" type="button"
ng-click="switchToConfigMode();"><span class="glyphicon glyphicon-wrench"
aria-hidden="true"></span></button>
</div>
<div class="input-group-addon">
<button class="btn btn-default btn-xs" aria-label="Help"
ng-click="switchToHelpMode();"><strong>?</strong></button>
</div>
</div>
</div>
</section>
<!-- tasklanes section -->
<section ng-if="inAppMode()" class="row">
<div ng-repeat="folder in taskFolders" ng-if="( folder.display )"
class="tasklane col-md-3 col-sm-4 col-xs-6"
ng-class=" { 'col-lg-100' : displayFolderCount === 1, 'col-lg-50' : displayFolderCount === 2, 'col-lg-33' : displayFolderCount === 3, 'col-lg-25': displayFolderCount === 4, 'col-lg-20': displayFolderCount === 5, 'col-lg-16': displayFolderCount === 6 }">
<div class="panel panel-default">
<header
ng-class="{ 'panel-heading-todo' : folder.type == 1, 'panel-heading-next' : folder.type == 2, 'panel-heading-progress' : folder.type == 3, 'panel-heading-waiting' : folder.type == 4,'panel-heading-completed' : folder.type == 5,'panel-heading-someday' : folder.type == 0 }">
<h5>{{ folder.title }}
<span class="pull-right">
<button
ng-if="( folder.allowAdd && (folder.limit == 0 || folder.tasks.length < folder.limit ))"
class="btn btn-default btn-xs" aria-label="Add" type="button"
ng-click="addTask(folder.type);">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
</button>
<span class="label label-info">{{ folder.tasks.length }}</span>
<span ng-if="( folder.limit > 0 )" class="label label-primary">{{ folder.limit }}</span>
</span>
</h5>
</header>
<ul id="folder-{{folder.type}}" ui-sortable="sortableOptions" ng-model="folder.filteredTasks"
ng-class="{ 'tasklist-default' : !display_message, 'tasklist-message' : display_message }"
class="panel-body list-unstyled tasklist">
<li ng-repeat="task in folder.filteredTasks" class="task panel"
ng-class="{ 'task-completed': folder.type == 5, 'task-low' : task.priority === 0, 'task-medium' : task.priority === 1, 'task-high' : task.priority === 2, 'task-private': task.sensitivity === 2 }"
ng-dblclick="editTask(task)">
<header class="panel-heading">
{{ task.subject }}
<span ng-if="(folder.type != 0 && folder.type != 5 && (task.duedate | date:'yyyy' ) != '4501')"
ng-class="isOverdue(task.duedate)" class="pull-right">(Due:
{{ task.duedate | date:config.DATE_FORMAT }}) </span>
<span ng-if="folder.type == 5" class="pull-right">(Completed:
{{ task.completeddate | date:config.DATE_FORMAT }}) </span>
</header>
<div class="panel-body"> {{ task.notes }} </div>
<footer class="text-right" ng-style="getFooterStyle(task.categories)">
<div ng-if="( folder.displayOwner )"><span class="glyphicon glyphicon-user"></span>
{{ task.owner }} </div>
<div ng-if="( folder.displayPercent )" class="pull-right"> {{ task.percent }}%</div>
<div ng-show="( filter.private == privacyFilter.all.value && task.sensitivity == 2 )"
class="glyphicon glyphicon-lock"></div>
<div ng-if="(task.categories != '')" class="pull-left"><span
class="glyphicon glyphicon-tag"></span>
<span ng-repeat="cat in task.categories"><strong
ng-style="cat.style">{{ cat.label }}</strong> </span>
</div>
<div ng-if="( folder.displayTotalWork )"><span class="glyphicon glyphicon-time"></span>
{{ task.totalwork }} </div>
<span class="btn-group btn-group-xs">
<button ng-show="(task.oneNoteURL != '')" class="btn btn-default btn-xs"
aria-label="OneNote" type="button"
ng-click="openOneNoteURL(task.oneNoteURL)"><span
class="glyphicon glyphicon-book" aria-hidden="true"></span></button>
<button ng-if="folder.allowEdit" class="btn btn-default btn-xs" aria-label="Edit"
type="button" ng-click="editTask(task)"><span class="glyphicon glyphicon-edit"
aria-hidden="true"></span></button>
<button class="btn btn-default btn-xs" aria-label="Delete" type="button"
ng-click="deleteTask(task,folder.tasks,folder.filteredTasks, true)"><span
class="glyphicon glyphicon-trash" aria-hidden="true"></span></button>
</span>
</footer>
</li>
</ul>
</div>
</div>
</section>
<!-- config section -->
<section ng-if="(inConfigMode())" class="row">
<form ng-submit="submitConfig()" class="container-fluid">
<h2>Task Columns Configuration</h2>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#someday">{{config.SOMEDAY_FOLDER.TITLE}}</a></li>
<li><a data-toggle="tab" href="#backlog">{{config.BACKLOG_FOLDER.TITLE}}</a></li>
<li><a data-toggle="tab" href="#next">{{config.NEXT_FOLDER.TITLE}}</a></li>
<li><a data-toggle="tab" href="#progress">{{config.INPROGRESS_FOLDER.TITLE}}</a></li>
<li><a data-toggle="tab" href="#waiting">{{config.WAITING_FOLDER.TITLE}}</a></li>
<li><a data-toggle="tab" href="#done">{{config.COMPLETED_FOLDER.TITLE}}</a></li>
</ul>
<div class="tab-content" style="height:140px">
<div id="someday" class="tab-pane fade in active">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Show this column:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.SOMEDAY_FOLDER.ACTIVE">
</div>
</div>
<div class="form-group row col-sm-12">
<label class="control-label col-sm-1">Title:</label>
<div class="col-sm-2">
<input type="text" class="form-control input-sm" placeholder="Enter Title"
ng-model="config.SOMEDAY_FOLDER.TITLE">
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Display:</label>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.SOMEDAY_FOLDER.DISPLAY_PROPERTIES.OWNER"> Owner</label>
</div>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.SOMEDAY_FOLDER.DISPLAY_PROPERTIES.PERCENT"> Percentage
done</label>
</div>
<div class="col-sm-1">
<label class="control-label"> <input type="checkbox"
ng-model="config.SOMEDAY_FOLDER.DISPLAY_PROPERTIES.TOTALWORK"> Total
work</label>
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Include in report:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.SOMEDAY_FOLDER.REPORT.DISPLAY">
</div>
</div>
</div>
<div id="backlog" class="tab-pane fade">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Show this column:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.BACKLOG_FOLDER.ACTIVE">
</div>
</div>
<div class="form-group row col-sm-12">
<label class="control-label col-sm-1">Title:</label>
<div class="col-sm-2">
<input type="text" class="form-control input-sm" placeholder="Enter Title"
ng-model="config.BACKLOG_FOLDER.TITLE">
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Filter on Start Date:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.BACKLOG_FOLDER.FILTER_ON_START_DATE">
</div>
<div class="col-sm-10"> (means: hide tasks for which the Start Date is in the future)</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Display:</label>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.BACKLOG_FOLDER.DISPLAY_PROPERTIES.OWNER"> Owner</label>
</div>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.BACKLOG_FOLDER.DISPLAY_PROPERTIES.PERCENT"> Percentage
done</label>
</div>
<div class="col-sm-1">
<label class="control-label"> <input type="checkbox"
ng-model="config.BACKLOG_FOLDER.DISPLAY_PROPERTIES.TOTALWORK"> Total
work</label>
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Include in report:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.BACKLOG_FOLDER.REPORT.DISPLAY">
</div>
</div>
</div>
<div id="next" class="tab-pane fade">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Show this column:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.NEXT_FOLDER.ACTIVE">
</div>
</div>
<div class="form-group row col-sm-12">
<label class="control-label col-sm-1">Title:</label>
<div class="col-sm-2">
<input type="text" class="form-control" placeholder="Enter Title"
ng-model="config.NEXT_FOLDER.TITLE">
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Max number of tasks:</label>
<div class="col-sm-2">
<input type="number" class="form-control input-sm" ng-model="config.NEXT_FOLDER.LIMIT">
</div>
<div class="col-sm-5"> (zero for no limit)</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Display:</label>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.NEXT_FOLDER.DISPLAY_PROPERTIES.OWNER">
Owner</label>
</div>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.NEXT_FOLDER.DISPLAY_PROPERTIES.PERCENT"> Percentage
done</label>
</div>
<div class="col-sm-1">
<label class="control-label"> <input type="checkbox"
ng-model="config.NEXT_FOLDER.DISPLAY_PROPERTIES.TOTALWORK"> Total work</label>
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Include in report:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.NEXT_FOLDER.REPORT.DISPLAY">
</div>
</div>
</div>
<div id="progress" class="tab-pane fade">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Show this column:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.INPROGRESS_FOLDER.ACTIVE">
</div>
</div>
<div class="form-group row col-sm-12">
<label class="control-label col-sm-1">Title:</label>
<div class="col-sm-2">
<input type="text" class="form-control input-sm" placeholder="Enter Title"
ng-model="config.INPROGRESS_FOLDER.TITLE">
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Max number of tasks:</label>
<div class="col-sm-2">
<input type="number" class="form-control input-sm"
ng-model="config.INPROGRESS_FOLDER.LIMIT">
</div>
<div class="col-sm-5"> (zero for no limit)</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Display:</label>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.INPROGRESS_FOLDER.DISPLAY_PROPERTIES.OWNER"> Owner</label>
</div>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.INPROGRESS_FOLDER.DISPLAY_PROPERTIES.PERCENT"> Percentage
done</label>
</div>
<div class="col-sm-1">
<label class="control-label"> <input type="checkbox"
ng-model="config.INPROGRESS_FOLDER.DISPLAY_PROPERTIES.TOTALWORK"> Total
work</label>
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Include in report:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.INPROGRESS_FOLDER.REPORT.DISPLAY">
</div>
</div>
</div>
<div id="waiting" class="tab-pane fade">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Show this column:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.WAITING_FOLDER.ACTIVE">
</div>
</div>
<div class="form-group row col-sm-12">
<label class="control-label col-sm-1">Title:</label>
<div class="col-sm-2">
<input type="text" class="form-control input-sm" placeholder="Enter Title"
ng-model="config.WAITING_FOLDER.TITLE">
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Display:</label>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.WAITING_FOLDER.DISPLAY_PROPERTIES.OWNER"> Owner</label>
</div>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.WAITING_FOLDER.DISPLAY_PROPERTIES.PERCENT"> Percentage
done</label>
</div>
<div class="col-sm-1">
<label class="control-label"> <input type="checkbox"
ng-model="config.WAITING_FOLDER.DISPLAY_PROPERTIES.TOTALWORK"> Total
work</label>
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Include in report:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.WAITING_FOLDER.REPORT.DISPLAY">
</div>
</div>
</div>
<div id="done" class="tab-pane fade">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Show this column:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.COMPLETED_FOLDER.ACTIVE">
</div>
</div>
<div class="form-group row col-sm-12">
<label class="control-label col-sm-1">Title:</label>
<div class="col-sm-2">
<input type="text" class="form-control input-sm" placeholder="Enter Title"
ng-model="config.COMPLETED_FOLDER.TITLE">
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Display:</label>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.COMPLETED_FOLDER.DISPLAY_PROPERTIES.OWNER"> Owner</label>
</div>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox"
ng-model="config.COMPLETED_FOLDER.DISPLAY_PROPERTIES.PERCENT"> Percentage
done</label>
</div>
<div class="col-sm-1">
<label class="control-label"> <input type="checkbox"
ng-model="config.COMPLETED_FOLDER.DISPLAY_PROPERTIES.TOTALWORK"> Total
work</label>
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Include in report:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.COMPLETED_FOLDER.REPORT.DISPLAY">
</div>
</div>
</div>
</div>
<h2>Layout Configuration</h2>
<div style="height:60px">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Category Colors:</label>
<div class="col-sm-1">
<label class="control-label"><input type="checkbox" ng-model="config.USE_CATEGORY_COLORS">
Category</label>
</div>
<div class="col-sm-1" ng-show="config.USE_CATEGORY_COLORS">
<label class="control-label"><input type="checkbox"
ng-model="config.USE_CATEGORY_COLOR_FOOTERS"> Entire
footer</label>
</div>
</div>
<div class="form-group row col-sm-12">
<label class="control-label col-sm-1">Task details:</label>
<div class="col-sm-2">
<input type="text" class="form-control input-sm" ng-model="config.TASKNOTE_MAXLEN">
</div>
<div class="col-sm-5"> (max number of character displayed)</div>
</div>
</div>
<h2>Behavior Configuration</h2>
<div style="height:130px">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Auto-start tasks:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.AUTO_START_TASKS">
</div>
<div class="col-sm-10"> (Automatically move tasks to {{config.NEXT_FOLDER.TITLE}} column when
its Start Date has arrived)</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Auto-start due tasks:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.AUTO_START_DUE_TASKS">
</div>
<div class="col-sm-10"> (Automatically move tasks to {{config.NEXT_FOLDER.TITLE}} column when
its Due Date has arrived)</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Remember state:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.SAVE_STATE">
</div>
<div class="col-sm-10"> (Remember the filters after you close the application)</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Ping back:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.PING_BACK">
</div>
<div class="col-sm-10"> (Monitor if the app is being used)</div>
</div>
<div class="form-group row col-sm-12">
<label class="control-label col-sm-1">Done tasks action:</label>
<div class="col-sm-11">
<select class="col-sm-1" ng-model="config.COMPLETED.ACTION">
<option>DELETE</option>
<option>ARCHIVE</option>
<option>NOTHING</option>
</select>
<div ng-show="config.COMPLETED.ACTION != 'NOTHING'">
<div class="col-sm-1">
<input type="text" class="form-control input-sm"
ng-model="config.COMPLETED.AFTER_X_DAYS">
</div>
<div class="col-sm-5"> days after completion</div>
</div>
</div>
</div>
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">Debug logging:</label>
<div class="col-sm-1">
<input type="checkbox" ng-model="config.LOG_ERRORS">
</div>
<div class="col-sm-10"> (Switch debug logging on for support purposes)</div>
</div>
</div>
<h2>App Configuration</h2>
<div style="height:50px">
<div class="form-check row col-sm-12">
<label class="control-label col-sm-1">JanBan Home Page:</label>
<div class="col-sm-8"> {{installFolder}}</div>
</div>
</div>
<button id="submitconfig" class="btn btn-primary">Save</button>
<button id="cancelconfig" class="btn btn-default" type="reset"
ng-click="switchToAppMode();">Cancel</button>
</form>
</section>
<!-- help section -->
<section ng-if="(inHelpMode())" class="row">
<div class="col-sm-6 col-sm-offset-3">
<div class="panel panel-default">
<header class="panel-heading-waiting text-center"><strong>About...</strong></header>
<form ng-submit="switchToAppMode()">
<div class="panel-about">
<img src="janban-icon-512.jpg" class="left" style="width:120px">
JanBan Task Board version {{version}}
<br />
<br />
A Kanban style taskboard for managing your Outlook tasks.<br />
Refactored and taken to the next level by <a href="https://papasmurf.nl/jan/"
target="_blank"><strong><i>Jan van Veldhuizen</i></strong></a>.<br />
<br />
<a href="https://gitlab.com/janware/janban" target="_blank">View on Gitlab</a><br />
<br />
Credits:<br />
<a href="https://github.com/evrenvarol/outlook-taskboard" target="_blank"><strong><i>Evren
Varol</i></strong></a>, for developing the very first version of the Kanban
board
<br />
<a href="https://github.com/Shrekmachine"
target="_blank"><strong><i>Shrekmachine</i></strong></a> and
<a href="https://github.com/BillyMcSkintos"
target="_blank"><strong><i>BillyMcSkintos</i></strong></a>, for following my
developement and doing a lot of useful suggestions
<br />
<br />
<strong>Postcardware</strong>
<br />
You're free to use this software. If you are happy with it I highly appreciate you sending
me a postcard from your hometown so that I know where the JanBan board is being used.
<br />
My address is: JanBan, Egidius Blocklaan 24, 1241BV Kortenhoef, Netherlands.
<br />
<br />
<strong>Support or Feedback: </strong>
<button id="sendFeedback" class="btn btn-primary" type="button"
ng-click="sendFeedback(includeConfig, includeState, includeLog);"><strong>send a
message</strong></button>
<br />
<input type="checkbox" ng-model="includeConfig"> Attach configuration
<br />
<input type="checkbox" ng-model="includeState"> Attach filter
<br />
<input type="checkbox" ng-model="includeLog"> Attach debug log
<br />
<br />
</div>
<div class="text-center">
<button id="back" class="btn btn-default">Ok</button>
</div>
</form>
</div>
</div>
</section>
</div>
</body>
</html>