summaryrefslogtreecommitdiff
path: root/templates/bug.html
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-07-17 16:00:44 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-07-17 16:00:44 +0200
commitb94a6df756f80890ca0c04d9c08e05eb7b87870c (patch)
tree74a34ddded993d2428506a290ec369c87899e960 /templates/bug.html
parent95679599de538a4833dd873f0630e5819b60db10 (diff)
downloadhemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.tar.gz
hemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.tar.bz2
hemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.zip
Various html improvements
Diffstat (limited to 'templates/bug.html')
-rw-r--r--templates/bug.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/bug.html b/templates/bug.html
index fc891fa..c8c2c70 100644
--- a/templates/bug.html
+++ b/templates/bug.html
@@ -1,3 +1,4 @@
+{% import "macros.html" as macros %}
<!DOCTYPE html>
<head>
<title>
@@ -13,7 +14,7 @@
<h3 class="subject" >
{{ replies[0]["Subject"]|e }}
</h3>
- Send replies to <a href="mailto:{{ bug.id }}@{{ DOMAIN }}" >{{ bug.id }}@{{ DOMAIN }}</a>
+ Send replies to <a href="mailto:{{ bug.id }}@{{ DOMAIN }}" >{{ bug.id }}@{{ DOMAIN }}</a> or using the <a href="#ReplyForm">Form below.</a>
</header>
{% for i in replies %}
<div class="container">
@@ -37,5 +38,8 @@
</div>
</div>
{% endif %}
+
+ {{ macros.form(bug.id, DOMAIN, True) }}
+
</body>