view index.html @ 18:b2e0ea0178fb

Moved js and css files into their own directories.
author Atul Varma <varmaa@toolness.com>
date Wed, 10 Mar 2010 12:44:58 -0800
parents 4a698ea4be60
children b6b1f0af8516
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="css/dashboard.css" />
  <title>Atul's Bugzilla Dashboard</title>
</head>
<body>
<div id="reports">
  <h1>Atul's Bugzilla Dashboard</h1>
  <div class="container">
    <div id="assigned-bugs"><h2>My Assigned Bugs</h2></div>
    <div id="fixed-bugs"><h2>My Fixed Bugs</h2></div>
    <div id="code-reviews"><h2>My Requested Code Reviews</h2></div>
    <div id="reported-bugs"><h2>My Reported Bugs</h2></div>
    <div id="cc-bugs"><h2>My CC'd Bugs</h2></div>
  </div>
</div>
<div id="templates">
  <div class="bug-tooltip">
    <div>
      <span class="priority"></span>
      <span class="severity"></span>
    </div>
    <div>
      <span class="product"></span>
      <span class="component"></span>
    </div>
    <div>Created <span class="age"></span></div>
  </div>
  <table class="bugs">
    <tr class="header">
      <th>Summary</th>
      <th>Last&nbsp;Changed</th>
    </tr>
    <tr class="bug-row">
      <td class="summary"></td>
      <td class="last-changed"></td>
    </tr>
  </table>
</div>
<div id="form-cache">
  <form><textarea class="data"></textarea></form>
</div>
</body>
<script src="js/jquery.js"></script>
<script src="js/date-utils.js"></script>
<script src="js/bugzilla.js"></script>
<script src="js/cache.js"></script>
<script src="js/dashboard.js"></script>
</html>