URLs all read from urls.py file now, no hardcoded URLs
[~kgodey/maayanwich.git] / templates / sandwich.html
1 {% extends "base.html" %}
2
3 {% block title %}Add a sandwich{% endblock %}
4 {% block content %}
5         <h1 class="pagetitle">Add a new sandwich</h1>
6         <form enctype="multipart/form-data" action="{% url add_sandwich %}" method="post">
7         {{ sform.as_p }}
8         <input type="submit" value="Submit" />
9         </form>
10 {% endblock %}