|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<table class='ChangeControlTable' id='user-notes-table'>
<tr>
<td class='ColumnHeader'>Data dodania:</td>
<td class='ColumnHeader'>Hasło:</td>
<td class='ColumnHeader'>Słownik:</td>
<td class='ColumnHeader'>Temat wiadomości:</td>
<td class='ColumnHeader'>Nadawca:</td>
{% if private %}
{% else %}
<td class='ColumnHeader'>Nowa:</td>
{% endif %}
</tr>
{% for note in notes %}
<tr class='NotesTableRow' id='note_{{note.id}}' onclick="selectNote('note_{{note.id}}')">
<td>{{note.time}}</td>
<td>{{note.lemma.entry}}</td>
<td>{{note.lemma.vocabulary.name}}</td>
<td>{{note.topic}}</td>
<td>{{note.sender.username}}</td>
{% if private %}
{% else %}
{% if note.new %}
<td id='new'>TAK</td>
{% else %}
<td id='new'></td>
{% endif %}
{% endif %}
</tr>
{% endfor %}
</table>
|