Files
edx-platform/lms/templates/discussion/_user_active_threads.html
2012-08-19 00:16:04 -07:00

17 lines
398 B
HTML

<%namespace name="renderer" file="_thread.html"/>
<section class="discussion user-active-discussion">
<div class="discussion-non-content discussion-local"></div>
<div class="threads">
% for thread in threads:
${renderer.render_thread(course_id, thread, show_comments=True)}
% endfor
</div>
<%include file="_paginator.html" />
</section>
<%include file="_js_data.html" />