Mercurial > bugzilla-dashboard
annotate index.html @ 14:1ece61eda826
Renamed pretty-date.js to date-utils.js.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Mon, 08 Mar 2010 22:48:06 -0800 |
parents | ea3ec9f460db |
children | c4de72b56b3e |
rev | line source |
---|---|
0 | 1 <html> |
2 <head> | |
3 <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
4 <link rel="stylesheet" type="text/css" media="all" | |
5 href="dashboard.css" /> | |
6 <title>Atul's Bugzilla Dashboard</title> | |
7 </head> | |
8 <body> | |
7
d27bd0db6bf1
added loading screen, removed duplicate bug listings.
Atul Varma <varmaa@toolness.com>
parents:
6
diff
changeset
|
9 <div id="reports"> |
d27bd0db6bf1
added loading screen, removed duplicate bug listings.
Atul Varma <varmaa@toolness.com>
parents:
6
diff
changeset
|
10 <h1>Atul's Bugzilla Dashboard</h1> |
9
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
11 <div class="container"> |
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
12 <div id="assigned-bugs"><h2>My Assigned Bugs</h2></div> |
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
13 <div id="fixed-bugs"><h2>My Fixed Bugs</h2></div> |
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
14 <div id="code-reviews"><h2>My Requested Code Reviews</h2></div> |
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
15 <div id="reported-bugs"><h2>My Reported Bugs</h2></div> |
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
16 <div id="cc-bugs"><h2>My CC'd Bugs</h2></div> |
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
17 </div> |
7
d27bd0db6bf1
added loading screen, removed duplicate bug listings.
Atul Varma <varmaa@toolness.com>
parents:
6
diff
changeset
|
18 </div> |
0 | 19 <div id="templates"> |
11
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
20 <div class="bug-tooltip"> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
21 <div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
22 <span class="priority"></span> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
23 <span class="severity"></span> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
24 </div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
25 <div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
26 <span class="product"></span> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
27 <span class="component"></span> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
28 </div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
29 <div>Created <span class="age"></span></div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
30 </div> |
0 | 31 <table class="bugs"> |
32 <tr class="header"> | |
33 <th>Summary</th> | |
3
5eb1d8b6f017
removed vertical table borders
Atul Varma <varmaa@toolness.com>
parents:
2
diff
changeset
|
34 <th>Last Changed</th> |
0 | 35 </tr> |
36 <tr class="bug-row"> | |
4
11d242c482ca
removed link from bug summary and applied it to the entire bug row.
Atul Varma <varmaa@toolness.com>
parents:
3
diff
changeset
|
37 <td class="summary"></td> |
1
bddbe7723643
Added john resig's pretty date lib and a 'last changed' column on report tables.
Atul Varma <varmaa@toolness.com>
parents:
0
diff
changeset
|
38 <td class="last-changed"></td> |
0 | 39 </tr> |
40 </table> | |
41 </div> | |
42 </body> | |
43 <script src="jquery.js"></script> | |
14
1ece61eda826
Renamed pretty-date.js to date-utils.js.
Atul Varma <varmaa@toolness.com>
parents:
12
diff
changeset
|
44 <script src="date-utils.js"></script> |
0 | 45 <script src="bugzilla.js"></script> |
46 <script src="dashboard.js"></script> | |
47 </html> |