Show access levels and context everywhere!
[zzz-spline-forum.git] / splinext / forum / templates / forum / forums.mako
index 24d59a8..6aa4be3 100644 (file)
@@ -1,11 +1,30 @@
 <%inherit file="/base.mako" />
+<%namespace name="forumlib" file="/forum/lib.mako" />
 
 <%def name="title()">Forums</%def>
 
-<table>
+<h1>Forums</h1>
+<table class="forum-list striped-rows">
+<thead>
+    <tr class="header-row">
+        <th class="name">
+            <img src="${h.static_uri('spline', 'icons/folders-stack.png')}" alt="">
+            Forum
+        </th>
+        <th class="stats">Volume</th>
+        <th class="stats">Activity</th>
+    </tr>
+</thead>
+<tbody>
     % for forum in c.forums:
     <tr>
-        <td><a href="${url(controller='forum', action='threads', forum_id=forum.id)}">${forum.name}</a></td>
+        <td class="name">
+            <a href="${url(controller='forum', action='threads', forum_id=forum.id)}">${forum.name}</a>
+            ${forumlib.forum_access_level(forum)}
+        </td>
+        <td class="stats">xxx</td>
+        <td class="stats">xxx</th>
     </tr>
     % endfor
+</tbody>
 </table>