e58fc372126643d59bb74de3bc1ecbe221bd20a0
[edumed.git] / comment / templates / comment / commentdocument_list.html
1 {% extends "base_mil.html" %}
2 {% load i18n %}
3
4
5 {% block body %}
6
7     <p>{% blocktrans with href=form_href %}
8     Take part in consultations by filling out <a href="{{form_href}}">this form</a> or comment on specific competencies in different thematic fields
9     {% endblocktrans %}:</p>
10
11     <ol>
12     {% for document in object_list %}
13         <li><a href="{{document.get_absolute_url}}">{{document.name}}</a></li>
14     {% endfor %}
15     </ol>
16
17 {% endblock %}