Conflicts: lms/djangoapps/django_comment_client/forum/views.py lms/djangoapps/django_comment_client/permissions.py lms/static/coffee/src/discussion/content.coffee lms/static/coffee/src/discussion/utils.coffee lms/templates/discussion/_recent_active_posts.html lms/templates/discussion/_search_bar.html lms/templates/discussion/_thread.html lms/templates/discussion/_trending_tags.html lms/urls.py
14 lines
514 B
HTML
14 lines
514 B
HTML
% if recent_active_threads:
|
|
<article class="discussion-sidebar-following sidebar-module">
|
|
<header>
|
|
<h4>Following</h4>
|
|
<a href="#" class="sidebar-view-all">view all ›</a>
|
|
</header>
|
|
<ol class="discussion-sidebar-following-list">
|
|
% for thread in recent_active_threads:
|
|
<li><a href="#"><span class="sidebar-following-name">${thread['title']}</span> <span class="sidebar-vote-count">${thread['votes']['point']}</span></a></li>
|
|
% endfor
|
|
<ol>
|
|
</article>
|
|
% endif
|