use timestamp component in inbox
This commit is contained in:
		@@ -14,7 +14,7 @@
 | 
			
		||||
          <%
 | 
			
		||||
            local unread_posts_text = " (" .. thread.unread_count .. " unread post" .. (thread.unread_count > 1 and "s" or "")-- .. ")"
 | 
			
		||||
          %>
 | 
			
		||||
          <a class="accordion-title" href="<%= url_for("thread", {slug = thread.thread_slug}, {after = latest_post_id}) .. "#post-" .. latest_post_id %>" title="Jump to latest post"><%= thread.thread_title .. unread_posts_text %>, latest at <span class="timestamp" data-utc=<%= thread.newest_post_time %>><%= os.date("%c", thread.newest_post_time) %></span>)</a>
 | 
			
		||||
          <a class="accordion-title" href="<%= url_for("thread", {slug = thread.thread_slug}, {after = latest_post_id}) .. "#post-" .. latest_post_id %>" title="Jump to latest post"><%= thread.thread_title .. unread_posts_text %>, latest at <% render("views.common.timestamp", {timestamp = thread.newest_post_time}) -%>)</a>
 | 
			
		||||
          <form action="<%= url_for("thread_subscribe", {slug = thread.thread_slug}) %>" method="post">
 | 
			
		||||
            <input type="hidden" name="subscribe" value="read">
 | 
			
		||||
            <input type="submit" value="Mark Thread as Read">
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user