~james-w/python-oops-tools/prod-deploy

« back to all changes in this revision

Viewing changes to src/oopstools/oops/templates/base.html

  • Committer: Robert Collins
  • Date: 2011-10-13 20:18:51 UTC
  • Revision ID: robertc@robertcollins.net-20111013201851-ym8jmdhoeol3p83s
Export of cruft-deleted tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 
2
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
4
  <head>
 
5
    <title>{% block title %}Search Launchpad OOPS Reports{% endblock %}</title>
 
6
    <style type="text/css" media="screen">
 
7
      @import url("/oops/static/oops.css");
 
8
    </style>
 
9
  </head>
 
10
  <body>
 
11
    <div id="search">
 
12
      {% block logo %}
 
13
        <img src="https://launchpad.net/@@/launchpad-logo-and-name.png" />
 
14
      {% endblock %}
 
15
    <form action="">
 
16
      <input type="text" name="oopsid" />
 
17
      <input type="submit" value="Search OOPS" />
 
18
    </form>
 
19
    <div id="notfound">
 
20
      {% if userdata %}
 
21
      <p>Your search: <b>{{userdata.oopsid}}</b> didn't match any oops.</p>
 
22
      {% endif %}
 
23
    </div>
 
24
    </div>
 
25
    <div id="summaries">
 
26
      {% block summaries %}{% endblock %}
 
27
    </div>
 
28
  </body>
 
29
</html>