Rearrange source to src dir.
[redakcja.git] / apps / wiki / templates / wiki / diff_table.html
diff --git a/apps/wiki/templates/wiki/diff_table.html b/apps/wiki/templates/wiki/diff_table.html
deleted file mode 100644 (file)
index 818c38c..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-{% load i18n %}
-<table class="diff_table">
-       <thead>
-               <tr>
-                       <th colspan="2">{% trans "Old version" %}</th>
-                       <th colspan="2">{% trans "New version" %}</th>
-               </tr>
-       </thead>
-<tbody>
-{% for an, a, bn, b, has_change in changes %}
-
-<tr class="{% if has_change %}change{% endif %}">
-<td>{{an}}</td>
-<td class="left">{{ a|safe }}&nbsp;</td>
-<td>{{bn}}</td>
-<td class="right">{{ b|safe }}&nbsp;</td>
-</tr>
-
-{% endfor %}
-</tbody>
-</table>
\ No newline at end of file