aboutsummaryrefslogtreecommitdiff
path: root/templates/show_paste.html
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-11 19:30:19 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-11 19:30:19 -0500
commit4cd7dfecfbe0d9d5cc5db944e47da8c058e55166 (patch)
treef7145e18cf45646b750c025bcfb591612cb40aa0 /templates/show_paste.html
parentupdate style to mine (diff)
downloadstackbin-4cd7dfecfbe0d9d5cc5db944e47da8c058e55166.tar.gz
stackbin-4cd7dfecfbe0d9d5cc5db944e47da8c058e55166.tar.bz2
stackbin-4cd7dfecfbe0d9d5cc5db944e47da8c058e55166.zip
add support for title, and ensure no js
Diffstat (limited to 'templates/show_paste.html')
-rw-r--r--templates/show_paste.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/show_paste.html b/templates/show_paste.html
index 9628402..26273bf 100644
--- a/templates/show_paste.html
+++ b/templates/show_paste.html
@@ -1,7 +1,8 @@
{% extends "layout.html" %}
-{% block title %}Paste #{{ paste.id }}{% endblock %}
+{% block title %}{{ paste.title }}{% endblock %}
{% block body %}
- <h2>Paste #{{ paste.id }}</h2>
+ {# <h2>Paste #{{ paste.id }}</h2> #}
+ <h2>{{ paste.title }}</h2>
<dl>
{% if paste.user %}
<dt>Author
bgstack15