blob: 977ef2202347b9a4d46324d5083b435254666386 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "layout.html" %}
{% block title %}New Paste{% endblock %}
{% block body %}
<form action="" method=post>
<h2><div class="pastetitle"><textarea rows="1" name="pastetitle">Enter title here</textarea></div>
{%- if parent %}
- Reply to {{ parent.title }}
{%- endif %}
<span class="chk-private"><input name="is_private" type="checkbox"/>Private</span>
</h2>
<div class=code><textarea name=code cols=60 rows=12>{{ parent.code }}</textarea></div>
<p><input type=submit value="New Paste">
</form>
{% endblock %}
|