Inbox

<% if #new_posts == 0 then %> You have no unread posts. <% else %> You have <%= total_unreads_count %> unread post<%= total_unreads_count > 1 and "s" or "" %>: <% for _, thread in ipairs(new_posts) do %>
<% local latest_post_id = thread.posts[#thread.posts].id %> <% local unread_posts_text = " (" .. thread.unread_count .. " unread post" .. (thread.unread_count > 1 and "s" or "")-- .. ")" %> " title="Jump to latest post"><%= thread.thread_title .. unread_posts_text %>, latest at ><%= os.date("%c", thread.newest_post_time) %>)
" method="post">
" method="post">
<% for _, post in ipairs(thread.posts) do %> <% render("views.threads.post", {post = post, edit = false, is_latest = false, no_reply = true, thread = get_thread_by_id(thread.thread_id)}) %> <% end %>
<% end %> <% end %>