Commit e2f9139c90df43859cddc421a2d95145b8a35b6f

Authored by Zambom
1 parent 65775abe

Adding div wrapper to append new foruns [Issue: #215]

courses/templates/topic/list_topic_foruns.html
1 -{% for forum in foruns %}  
2 - <li><i class="fa fa-commenting" aria-hidden="true"></i> <a id="forum_{{ forum.id }}" href="{% url 'course:forum:view' forum.slug %}"> {{ forum }}</a></li>  
3 -{% endfor %}  
4 \ No newline at end of file 1 \ No newline at end of file
  2 +<div class="foruns_list">
  3 + {% for forum in foruns %}
  4 + <li><i class="fa fa-commenting" aria-hidden="true"></i> <a id="forum_{{ forum.id }}" href="{% url 'course:forum:view' forum.slug %}"> {{ forum }}</a></li>
  5 + {% endfor %}
  6 +</div>
5 \ No newline at end of file 7 \ No newline at end of file