First take on connecting lessons to forum topics
[edumed.git] / catalogue / templates / catalogue / lesson / lesson_detail.html
index c6f726a..adc5dc3 100755 (executable)
 </p>
 
 </footer>
+
+
+{% if object.forum_topics.all.count %}
+<h2>Na forum</h2>
+<ul>
+{% for forum_topic in object.forum_topics.all %}
+    <li><a href="{{forum_topic.pybb_topic.get_absolute_url}}">{{forum_topic.pybb_topic.name}}</a></li>
+{% endfor %}
+</ul>
+{% endif %}
+
 </div>
 
 {% endblock %}