-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.58 KB
/
index.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
<html>
<head>
<title>Tasking Stats</title>
<meta charset="utf-8" />
<script src="./app.js"></script>
<script src="./Chart.bundle.min.js"></script>
<link rel="stylesheet" href="style.css">
<meta property="og:title" content="OSM Tasking Manager Statistics">
<meta property="og:description" content="Show live statistics for how quickly projects in a tasking manager are being completed">
<meta property="og:type" content="website">
</head>
<body>
<section id=main_content>
<h1>Tasking Stats</h1>
<details closed>
<summary>About</summary>
<p>Calculates how quickly tasks are being completed. This calculates how long it would take to finish a project, presuming that tasks are completed at the current rate. It's very simple, and just counts tasks marked as "Mapped". It isn't really aware of splitting tasks.</p>
</details>
<p>
<input id=tasking_manager_url type=text placeholder="URL" value="https://tasks.openstreetmap.ie" />
<button onclick="load_tm()">Load</button>
</p>
<div id=base></div>
</section>
<footer>
<div>
<a href="https://osmie.github.io/tasking-manager-stats/">Hosted Version</a>
| Source code on <a href="https://github.com/osmie/tasking-manager-stats">GitHub</a>, © 2020 <a href="./LICENCE.txt">AGPL3+</a>
| As requested, here's a pony: 🦄
| Happy Mapping. Have fun.
</div>
<div>
<a href="https://www.openstreetmap.org">OpenStreetMap.org</a>
| <a href="https://join.osmfoundation.org">Join the OSM Foundation</a>
</div>
</footer>
</body>
</html>