Skip to content
Snippets Groups Projects
Select Git revision
  • 2592229ec23dea66f6fd1079b16f04ff53e5e78b
  • master default protected
2 results

index.html

Blame
  • index.html 487 B
    <html> <head>
        <title>Comfy Django</title>
        </head>
        <body>
        <h1>CouchDB in Django</h1>
        <form method="post" action=".">
        <table>
          <tr>
            <td> Title for new document </td>
            <td><input type="text" name="title"></td>
            <td><input type="submit"></td>
          </tr>
        </table>
        </form>
        <hr>
        <ol>
          {% for row in rows %}
          <li><a id="title" href="/doc/{{ row }}/">{{ row }}</a></li>
          {% endfor %}
        </ol>
        </body> </html>