~launchpad-pqm/python-oops-tools/trunk

« back to all changes in this revision

Viewing changes to src/oopstools/oops/templates/prefixloader.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>Load new prefixes into the database</title>
 
6
    <style type="text/css" media="screen">
 
7
      @import url("/oops/static/oops.css");
 
8
    </style>
 
9
  </head>
 
10
  <body>
 
11
    Use this page to load new OOPS prefixes from ${LAZR_CONFIG}
 
12
    <form action="/prefixloader/" method="POST">
 
13
      <input type="submit" value="Load prefixes" />
 
14
    {% if prefixes %}
 
15
    Loaded into the database:
 
16
      {% for prefix in prefixes %}
 
17
        <ul>{{prefix}}</ul>
 
18
      {% endfor %}
 
19
    {% endif %}
 
20
    </form>
 
21
  </body>
 
22
</html>