-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
110 lines (93 loc) · 3.88 KB
/
Copy pathabout.html
File metadata and controls
110 lines (93 loc) · 3.88 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
108
109
110
<!--
Creator: Pauline Cairns
Date: 11/03/2019
Purpose: Page describes purpose of app. Link to this page will be found in each web page which contains a footer
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1,
shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<title>About</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<!--- Main body --->
<body>
<div class="container colour">
<header>
<a href="index.php"><h2 class="logo">FORECAST</h2></a>
</header>
<!--Start of main section -->
<main>
<h3>Purpose</h3>
<p> A task management resourcing tool to allocate work across tutors and support business continuity.</p>
<h3>Why required?</h3>
<h4>Tutors</h4>
<p>Tutors lecture on a portfolio of modules and the workflow for each module differs across a semester often resulting in task deadlines across their portfolio clashing.
</p>
<h4>Head of school</h4>
<p>The head of school requires oversight of the workload across the school to aid
with allocation of work and understand future staffing requirements.</p>
<h3>Why Change?</h3>
<p>The adoption of a centralised task management system which stores tutor’s to-do lists:</p>
<ul>
<li>Provides real-time knowledge on the workload of tutors and the School to understand any current bottlenecks</li>
<li>Allows prediction of future workloads to allow staffing requirements to be proactively assessed</li>
<li>Provides business continuity as should a tutor be absent or leave RGU, the incumbent knows the current task status and pending deadlines.</li>
</ul>
<h3>How does <span class="forecast">FORECAST </span>help?</h3>
<p>FORECAST provides separate views for:</p>
<ul>
<li>
The Head of School – can view individual tutor or group of tutors to-do lists to understand current workload.
</li>
<li>
Each module - shows the tasks allocated to the module tutors along with a repository of uploaded files relevant to the module to encourage knowledge sharing.
</li>
<li>
Each tutor - shows their individual to-do list.
</li>
</ul>
<p>The tasks for a to-do list can be:</p>
<ul>
<li>set up as new and allocated to a tutor,</li>
<li>amended, and</li>
<li>removed from the list.</li>
</ul>
</main>
<!-- End of main section -->
<!-- Start of footer -->
<footer>
<hr />
<div class="row">
<div class="col-sm-8 forecast">FORECAST - FORESEE ORGANISE RESOURCE EXCHANGE COLLABORATE ACHIEVE SHARE TRANSFER </div>
<div class="col-sm-4">
<p>Connect with us: <span class="addthis_inline_follow_toolbox connect"></span></p>
</div>
</div>
<!-- Bottom nav bar -->
<nav class="navbar navbar-expand-sm">
<span class="navbar-text">
© 2019 Pauline Cairns
</span>
<ul class="navbar-nav">
<li class="nav-item"><a href="contact.html">Contact</a></li>
<li class="nav-item"><a href="about.html">About</a></li>
<li class="nav-item"><a href="t&c.html">T&Cs</a></li>
<li class="nav-item"><a href="cookies.html">Cookies</a></li>
</ul>
</nav>
</footer>
<!-- End of footer -->
<!-- End of <div class="container colour">-->
</div>
<!-- www.addthis.com/dashboard script for connect tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5c853fcb8b82e462"></script>
<!-- Bootstrap script for general CSS layout-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</body>
</html>