aboutsummaryrefslogtreecommitdiff
path: root/templates/new_paste.html
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2011-12-05 22:38:43 -0500
committerArmin Ronacher <armin.ronacher@active-4.com>2011-12-05 22:38:43 -0500
commit803d20968fea1e25a298aa3b4e670d5670995e0d (patch)
tree2f90c6b8403e85576d0109a672dccb46598ce115 /templates/new_paste.html
downloadstackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.tar.gz
stackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.tar.bz2
stackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.zip
Added as example app
Diffstat (limited to 'templates/new_paste.html')
-rw-r--r--templates/new_paste.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/new_paste.html b/templates/new_paste.html
new file mode 100644
index 0000000..31bf41a
--- /dev/null
+++ b/templates/new_paste.html
@@ -0,0 +1,9 @@
+{% extends "layout.html" %}
+{% block title %}New Paste{% endblock %}
+{% block body %}
+ <h2>New Paste</h2>
+ <form action="" method=post>
+ <div class=code><textarea name=code cols=60 rows=18>{{ parent.code }}</textarea></div>
+ <p><input type=submit value="New Paste">
+ </form>
+{% endblock %}
bgstack15