diff options
Diffstat (limited to 'templates/bug.html')
-rw-r--r-- | templates/bug.html | 6 |
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> |