* Improved history view (still not there).
[redakcja.git] / apps / wiki / templates / wiki / diff_table.html
1 <table class="diff_table">
2         <thead>
3                 <tr>
4                         <th colspan="2">Stara wersja</th>
5                         <th colspan="2">Nowa wersja</th>
6                 </tr>
7         </thead>
8 <tbody>
9 {% for an, a, bn, b, has_change in changes %}
10
11 <tr class="{% if has_change %}change{% endif %}">
12 <td>{{an}}</td>
13 <td class="left">{{ a|safe }}&nbsp;</td>
14 <td>{{bn}}</td>
15 <td class="right">{{ b|safe }}&nbsp;</td>
16 </tr>
17
18 {% endfor %}
19 </tbody>
20 </table>