_user_active_threads.html 430 Bytes
Newer Older
Rocky Duan committed
1
<%namespace name="renderer" file="_content_renderer.html"/>
2

3
<section class="discussion user-active-discussion" _id="${user_id | h}">
4

Rocky Duan committed
5
  <div class="discussion-non-content local"></div>
6 7 8

  <div class="threads">
    % for thread in threads:
Rocky Duan committed
9
      ${renderer.render_content_with_comments(thread, {'partial_comments': True})}
10 11 12 13 14 15
    % endfor
  </div>

  <%include file="_paginator.html" />
</section>

Rocky Duan committed
16
<%include file="_js_data.html" />