Add a link to user profile in comments

And move back {% if %} inside of {% block %}, so they get interpreted.
This commit is contained in:
Bat
2018-06-12 21:14:49 +01:00
parent 4c3e63ec16
commit 4185ba230e
4 changed files with 16 additions and 11 deletions
+6 -1
View File
@@ -36,7 +36,12 @@ fn details(blog: String, slug: String, conn: DbConn, user: Option<User>) -> Temp
json!({
"id": c.id,
"content": c.content,
"author": c.get_author(&*conn)
"author": ({
let author = &c.get_author(&*conn);
let mut json = serde_json::to_value(author).unwrap();
json["fqn"] = serde_json::Value::String(author.get_fqn(&*conn));
json
})
})
}).collect::<Vec<serde_json::Value>>(),
"n_likes": post.get_likes(&*conn).len(),