Barebones styling. Very much so. Ugly.
[zzz-spline-forum.git] / splinext / forum / templates / forum / posts.mako
index 19aac8a..e4d3ffc 100644 (file)
@@ -5,6 +5,12 @@
 <div class="forum-post-container">
     % for post in c.thread.posts:
     <div class="forum-post">
+        <div class="author">
+            ${post.author.name}
+        </div>
+        <div class="meta">
+            <time>${post.posted_time}</time>
+        </div>
         <div class="content">${post.content}</div>
     </div>
     % endfor