Browsing and showing comment documents
[edumed.git] / comment / templates / comment / commentdocument_list.html
1 {% extends "base_mil.html" %}
2
3
4 {% block body %}
5
6     <ol>
7     {% for document in object_list %}
8         <li><a href="{{document.get_absolute_url}}">{{document.name}}</a></li>
9     {% endfor %}
10     </ol>
11
12 {% endblock %}