-
Notifications
You must be signed in to change notification settings - Fork 54
/
pstat.html
142 lines (135 loc) · 4.51 KB
/
pstat.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
<!--
This file is part of All Mangas Reader.
All Mangas Reader is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
All Mangas Reader is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with All Mangas Reader. If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>All Mangas Reader Personal Statistics</title>
<link href="css/amr_style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/pstat.css">
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/analytics.js" type="text/javascript"></script>
<script src="js/MangaElt.js" type="text/javascript"></script>
<script type='text/javascript' src='https://www.google.com/jsapi'></script>
<script src="js/innermenu.js" type="text/javascript"></script>
<script src="js/innermenu.js" type="text/javascript"></script>
<script src="js/pstat.js" type="text/javascript"></script>
</head>
<body>
<div id="header">
<div id="subheader">
<img class="imglogo" src="img/icon-32.png" width="100" alt="AllMangasReader"/>
<h1>All Mangas Reader Personal Statistics</h1>
</div>
</div>
<div id="menunav">
<div id="menuitems">
<ul>
<li> </li>
</ul>
</div>
</div>
<div id="corpseone">
<div id="subcorpseone">
<div id="nostat">
<div class="article">
<div class="article">
<h3>No manga read yet !</h3>
</div>
</div>
</div>
<div id="allstats">
<ul class="tabs">
<li class="tab checked" id="history">History</li>
<li class="tab" id="day">Per day</li>
<li class="tab" id="month">Per month</li>
</ul>
<div class="article parent ongletCont" id="histo">
<div class="article main">
<table class="glob">
<tr>
<td style="width:50%;">
<div class="divContFlex">
<div class="title">My stats</div>
<table class="totstats tbstat">
<tbody>
</tbody>
</table>
</div>
</td>
<td rowspan = "2" style="width:50%;">
<div class="divContFlex">
<div class="title">History</div>
<table class="stats tbstat">
<thead>
<tr>
<td> </td>
<td><select class="mgstats"></select></td>
<td>Chapter</td>
<td>Date</td>
<td>Time spent</td>
<td> </td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</td>
</tr>
<tr>
<td>
<div class="divContFlex">
<div class="title">By Manga</div>
<table class="mangastats tbstat">
<thead>
<tr>
<td>Manga</td>
<td>How many chapters read</td>
<td>Total time spent</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="article parent ongletCont" id="perday" style="display:none;">
<div class="article main">
<div id='per_day_div' style='width: 800px; height: 300px; margin-left:auto; margin-right:auto;'>
</div>
<div id='per_day_time_div' style='width: 800px; height: 300px; margin-left:auto; margin-right:auto;'>
</div>
</div>
</div>
<div class="article parent ongletCont" id="permonth" style="display:none;">
<div class="article main">
<div id='per_month_div' style='width: 800px; height: 300px; margin-left:auto; margin-right:auto;'>
</div>
<div id='per_month_time_div' style='width: 800px; height: 300px; margin-left:auto; margin-right:auto;'>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
All Mangas Reader 2013.
</div>
</body>
</html>