blob: 31bf41aaefa9b68293bbdefd8036d8c1b05269c6 (
plain)
1
2
3
4
5
6
7
8
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 %}
|