Skip to content
Snippets Groups Projects
Select Git revision
  • c2d4491b8d90568862a2cb8857fdb11b4c5aa3a0
  • master default protected
  • undefined
3 results

PM10_to_LGA.csv

Blame
  • Forked from an inaccessible project.
    detail.html 788 B
    <html> <head>
        <title>CouchDB in Django: {{ row.title }}</title>
        </head>
        <body>
        <h1>CouchDB in Django: {{ row.title }}</h1>
        <a href="/">Return to index</a>
        
        <table>
          <tr>
            <td> Title </td>
            <td id="title">{{ row.title }}</td>
          </tr>
          <tr>
            <td> Text </td>
            <td id="text">{{ row.text }}</td>
          </tr>
        </table>
        <hr>
        <form method="post" action=".">
        <table>
          <tr>
            <td> Title for new document </td>
            <td><input type="text" name="title" value="{{ row.title }}"></td>
          </tr>
          <tr>
            <td> Text </td>
            <td><textarea name="text">{{ row.text }}</textarea></td>
          <tr>
            <td><input type="submit"></td>
          </tr>
        </table>
        </form>
        </body> </html>