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>
|
|
9 <h1>Atul's Bugzilla Dashboard</h1>
|
|
10 <h2>My Assigned Bugs</h2>
|
|
11 <div id="assigned-bugs"></div>
|
|
12 <h2>My Fixed Bugs</h2>
|
|
13 <div id="fixed-bugs"></div>
|
|
14 <h2>My Requested Code Reviews</h2>
|
|
15 <div id="code-reviews"></div>
|
|
16 <div id="templates">
|
|
17 <table class="bugs">
|
|
18 <tr class="header">
|
|
19 <th>Summary</th>
|
|
20 <th>Priority</th>
|
|
21 </tr>
|
|
22 <tr class="bug-row">
|
|
23 <td><a target="_new" class="summary"></a></td>
|
|
24 <td class="priority"></td>
|
|
25 </tr>
|
|
26 </table>
|
|
27 </div>
|
|
28 </body>
|
|
29 <script src="jquery.js"></script>
|
|
30 <script src="bugzilla.js"></script>
|
|
31 <script src="dashboard.js"></script>
|
|
32 </html>
|