Fixed URLs of one-sandwich views. Fixed adding sandwiches.
[~kgodey/maayanwich.git] / templates / ingredient.html
1 {% extends "base.html" %}
2
3 {% block title %}Add an ingredient{% endblock %}
4 {% block content %}
5         <h1 class="pagetitle">Add a new ingredient</h1>
6         <form enctype="multipart/form-data" action="/sandwich/addingredient/" method="post">
7         {{ iform.as_p }}
8         <input type="submit" value="Submit" />
9         </form>
10 {% endblock %}