_recent_active_posts.html 616 Bytes
Newer Older
1 2
<%! import django_comment_client.helpers as helpers %>

3
% if recent_active_threads:
4 5 6
  <article class="discussion-sidebar-following sidebar-module">
    <header>
      <h4>Following</h4>
7
      <!--<a href="#" class="sidebar-view-all">view all &rsaquo;</a>-->
8 9 10
    </header>
    <ol class="discussion-sidebar-following-list">
      % for thread in recent_active_threads:
11
        <li><a href="${helpers.permalink(thread) | h}"><span class="sidebar-following-name">${thread['title'] | h}</span> <span class="sidebar-vote-count">${thread['votes']['point'] | h}</span></a></li>
12 13 14 15
      % endfor
    <ol>
  </article>
% endif