sortowanie wyników uczniów w mailu dla nauczyciela
[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 the consultation by filling in <a href="{{form_href}}">the 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     {% blocktrans %}
18         <p>To insert comments in a selected thematic field you need to register.</p>
19
20         <p>How to do it?</p>
21         <ol>
22             <li>Click on a selected link from the list of the thematic fields.</li>
23             <li>Choose "Register" option.</li>
24             <li>Enter your data.</li>
25             <li>Check your email for the message confirming the registration and click on the link included.</li>
26             <li>Enter your username and password.</li>
27             <li>Go back to the consultation page. Choose one of the fields, log in and share your comments.</li>
28         </ol>
29
30         <p>How to add a comment?</p>
31         <ol>
32             <li>Highlight a fragment of the text.</li>
33             <li>Click on a yellow "comment" button on the left.</li>
34             <li>Type in a subject and content of your comment.</li>
35             <li>Save your comment.</li>
36         </ol>
37     {% endblocktrans %}
38
39 {% endblock %}