Commit e2f9139c90df43859cddc421a2d95145b8a35b6f
1 parent
65775abe
Exists in
master
and in
5 other branches
Adding div wrapper to append new foruns [Issue: #215]
Showing
1 changed file
with
5 additions
and
3 deletions
Show diff stats
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 |