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

canvg-es2015.8f714b89c219b451ad97.js

Blame
  • Forked from Shekher Mudgal / COMP90024-project-group21
    Source project has a limited visibility.
    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>