aboutsummaryrefslogtreecommitdiff
path: root/templates/new_paste.html
blob: 5f1760a887b7095872ac924c11266338ee457d7f (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>New Paste
    {%- if parent %}
    - Reply to #{{ parent.id }}
    {%- 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 %}
bgstack15