view index.html @ 7:d27bd0db6bf1

added loading screen, removed duplicate bug listings.
author Atul Varma <varmaa@toolness.com>
date Sun, 07 Mar 2010 23:09:11 -0800
parents 8c29933b8435
children a5558c563a51
line wrap: on
line source

<html>
<head>
  <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  <link rel="stylesheet" type="text/css" media="all"
        href="dashboard.css" />
  <title>Atul's Bugzilla Dashboard</title>
</head>
<body>
<div id="loading-screen"><h1 class="countdown"></h1></div>
<div id="reports">
  <h1>Atul's Bugzilla Dashboard</h1>
  <h2>My Assigned Bugs</h2>
  <div id="assigned-bugs"></div>
  <h2>My Fixed Bugs</h2>
  <div id="fixed-bugs"></div>
  <h2>My Requested Code Reviews</h2>
  <div id="code-reviews"></div>
  <h2>My Reported Bugs</h2>
  <div id="reported-bugs"></div>
  <h2>My CC'd Bugs</h2>
  <div id="cc-bugs"></div>
</div>
<div id="templates">
  <table class="bugs">
    <tr class="header">
      <th>Summary</th>
      <th>Importance</th>
      <th>Last&nbsp;Changed</th>
    </tr>
    <tr class="bug-row">
      <td class="summary"></td>
      <td class="importance"></td>
      <td class="last-changed"></td>
    </tr>
  </table>
</div>
</body>
<script src="jquery.js"></script>
<script src="pretty-date.js"></script>
<script src="bugzilla.js"></script>
<script src="dashboard.js"></script>
</html>