<%namespace name="renderer" file="_content_renderer.html"/>

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

  <div class="discussion-non-content local"></div>

  <div class="threads">
    % for thread in threads:
      ${renderer.render_content_with_comments(thread, {'partial_comments': True})}
    % endfor
  </div>

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

<%include file="_js_data.html" />