Added a view for a form to add a sandwich, made a url for it and made a templates...
[~kgodey/maayanwich.git] / templates / sandwich.html
1 <html>
2         <head>
3                 <title>Add a sandwich!</title></head>
4         <body>
5                 <h1>Add a new sandwich</h1>
6                 <form action="/addsandwich/" method="post">
7                 {{ form.as_p }}
8                 <input type="submit" value="Submit" />
9                 </form>
10         </body>
11 </html>