From 918c2726b409b6820f66d9138cda5cf1c2307dd4 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 11 Apr 2018 16:35:40 +0200 Subject: [PATCH] fix(templates/handlers): Fix post anchors - ensure users are correctly linked to a post actor after replying - ensure timestamps are clickable to get post IDs --- src/handlers.rs | 2 +- templates/thread.html | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/handlers.rs b/src/handlers.rs index 43bc69afe..05b73a699 100644 --- a/src/handlers.rs +++ b/src/handlers.rs @@ -131,7 +131,7 @@ pub fn reply_thread(state: State, let post = res?; info!("Posted reply {} to thread {}", post.id, post.thread_id); Ok(HttpResponse::SeeOther() - .header("Location", format!("/thread/{}#post{}", post.thread_id, post.id)) + .header("Location", format!("/thread/{}#post-{}", post.thread_id, post.id)) .finish()) }) .responder() diff --git a/templates/thread.html b/templates/thread.html index bbe288e92..1b4846373 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -32,7 +32,10 @@ {% for post in posts -%} -
+
+ + {{ post.posted }} +
@@ -49,7 +52,6 @@
{{ post.body }}
- {{ post.posted }}
{%- endfor %}