added a span to the add sandwich template
[~kgodey/maayanwich.git] / templates / sandwich.html
index 32a85ed..4c8dd77 100644 (file)
@@ -1,11 +1,12 @@
-<html>
-       <head>
-               <title>Add a sandwich!</title></head>
-       <body>
-               <h1>Add a new sandwich</h1>
-               <form enctype="multipart/form-data" action="/addsandwich/" method="post">
-               {{ sform.as_p }}
-               <input type="submit" value="Submit" />
-               </form>
-       </body>
-</html>
\ No newline at end of file
+{% extends "base.html" %}
+
+{% block title %}Add a sandwich{% endblock %}
+{% block content %}
+       <h1 class="pagetitle">Add a new sandwich</h1>
+       <span class="formspan">
+       <form enctype="multipart/form-data" action="{% url add_sandwich %}" method="post">
+       {{ sform.as_p }}
+       <input type="submit" value="Submit" />
+       </form>
+       </span>
+{% endblock %}
\ No newline at end of file