feat(templates): Highlight stickied threads in index

This commit is contained in:
Vincent Ambo 2018-04-14 17:55:57 +02:00
parent d1c45159b9
commit c6995fcab3
2 changed files with 4 additions and 2 deletions

View file

@ -58,6 +58,7 @@ impl Message for IndexPage {
struct IndexThread {
id: i32,
title: String,
sticky: bool,
posted: FormattedDate,
author_name: String,
}
@ -71,6 +72,7 @@ impl Handler<IndexPage> for Renderer {
.map(|thread| IndexThread {
id: thread.thread_id,
title: escape_html(&thread.title),
sticky: thread.sticky,
posted: thread.posted.into(),
author_name: thread.thread_author,
})