aboutsummaryrefslogtreecommitdiff
path: root/templates/new_paste.html
blob: c7c623d6aa7daa2e207f9eebd7c46f3d690a0d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "layout.html" %}
{% block title %}New Paste{% endblock %}
{% block body %}
<h2>New Paste
  {%- if parent %}
  - Reply to #{{ parent.id }}
  {%- endif %}
</h2>
  <form action="" method=post>
    <div class=code><textarea name=code cols=60 rows=12>{{ parent.code }}</textarea></div>
    <p><input type=submit value="New Paste">
  </form>
{% endblock %}
bgstack15