diff options
author | B. Stack <bgstack15@gmail.com> | 2022-02-11 20:56:59 -0500 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-02-11 20:56:59 -0500 |
commit | 99f6fb15a5aaa326a729e73974006d1064a5582f (patch) | |
tree | 41795c1a447bb88c7521c286840c7d290c0afb8c /templates/new_paste.html | |
parent | add support for title, and ensure no js (diff) | |
download | stackbin-99f6fb15a5aaa326a729e73974006d1064a5582f.tar.gz stackbin-99f6fb15a5aaa326a729e73974006d1064a5582f.tar.bz2 stackbin-99f6fb15a5aaa326a729e73974006d1064a5582f.zip |
use UUID for paste id, and more js removal
Using uuids means that titles need to be used for displaying
"replies," "in response to," and so on.
Diffstat (limited to 'templates/new_paste.html')
-rw-r--r-- | templates/new_paste.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/new_paste.html b/templates/new_paste.html index 4d658c6..977ef22 100644 --- a/templates/new_paste.html +++ b/templates/new_paste.html @@ -4,7 +4,7 @@ <form action="" method=post> <h2><div class="pastetitle"><textarea rows="1" name="pastetitle">Enter title here</textarea></div> {%- if parent %} - - Reply to #{{ parent.id }} + - Reply to {{ parent.title }} {%- endif %} <span class="chk-private"><input name="is_private" type="checkbox"/>Private</span> </h2> |