-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
108 lines (97 loc) · 5.89 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<!-- Bootstrap Added via link -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<script src="./js/include_html.js"></script>
<script src="./js/script.js"></script>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/menu.css">
<title>Help</title>
<link rel="icon" href="./img/favicon.png" type="image/x-icon">
</head>
<body onload="includeHTML();">
<div w3-include-html="html_templates/menu.html"></div>
<div class="wrapper py-5">
<div class="container-xxl px-4">
<h1>Help</h1>
<p class="help-text">Join is a Kanban board. It gives you an overview of your current work situation and helps visualising the
project flow in agile project management. </p>
<div class="ci-border-dark p-2">
This app was built as a training project at Developer Akademie. There is no security layer implemented. The app is not supposed to be used with real life data. <strong>Do not enter personal data.</strong>
</div>
<div class="help-sections">
<h4><b>Add a task</b></h4>
<ul class="help-text">
<li>Create new tasks in the add-task section.</li>
<li>Fill the form and choose by whom the task should be processed.</li>
<li>You can create new categories for your individual purpose.</li>
<li>Decide whether the task should end up in the board for direct processing or in the backlog first.</li>
</ul>
<img class="help-img" src="./img/add-task.png" alt="Add task" title="Add task">
</div>
<div class="help-sections">
<h4><b>The board</b></h4>
<ul class="help-text">
<li>On the board each task passes through 4 stages.</li>
<li>The tasks can simply be moved by drag and drop.</li>
<li>On touch-screens, clicking on the swipe icon <img src="./img/swipe.png" class="trashbin"> moves the task to the next status. From "DONE" it will be moved to "TODO" again in order to allow all possible status changes.</li>
<li>After a task has been completed, it can either be archived or deleted.</li>
<li>The color of the left border of each task illustrates its importance level.</li>
<li>By clicking on the task you can see and edit all details.</li>
</ul>
<img class="help-img" src="./img/board.png" alt="Board" title="Board">
</div>
<div class="help-sections">
<h4><b>The backlog</b></h4>
<ul class="help-text">
<li>The backlog is a collection of upcoming tasks and ideas that are not yet in the focus of the project team.</li>
<li>You can edit the task by clicking on it.</li>
<li>To move the task to the board click on the arrow icon.</li>
</ul>
<img class="help-img" src="./img/backlog.png" alt="Backlog" title="Backlog">
</div>
<div class="help-sections">
<h4><b>The archive</b></h4>
<ul class="help-text">
<li>The archive stores all tasks that have already been completed.</li>
<li>It can be used to figure out who has completed which task.</li>
<li>By clicking on the restore icon the task is moved back to the "DONE" section on the board.</li>
<li>Deleting a task from the archive cannot be undone.</li>
</ul>
<img class="help-img" src="./img/archive1.png" alt="Archive" title="Archive">
</div>
<div class="help-sections">
<h4><b>The trash</b></h4>
<ul class="help-text">
<li>All tasks that are deleted end up in the recycle bin.</li>
<li>It prevents tasks from being deleted accidentally.</li>
<li>Tasks that were deleted from the board can be restored to the "TODO" section of the board. Tasks that were deleted from the backlog will be restored there.</li>
<li>Deleting from the recycle bin cannot be undone.</li>
</ul>
<img class="help-img" src="./img/recyclebin.png" alt="Trash" title="Trash">
</div>
<div class="help-sections">
<h4><b>The Settings</b></h4>
<ul class="help-text">
<li>Each task can be assigned to a limited number of team members.</li>
<li>We recommend to restrict this number to 1 or 2, in order to facilitate a clear structure of tasks and responsibilities. Consider splitting tasks that seem to require more contributors. </li>
</ul>
<img class="help-img" src="./img/settings-only-teamsize.png" alt="Settings" title="Settings">
</div>
</div>
</div>
</body>
</html>