Merge branch 'reflow'
[wolnelektury.git] / apps / funding / templates / funding / includes / fundings.html
diff --git a/apps/funding/templates/funding/includes/fundings.html b/apps/funding/templates/funding/includes/fundings.html
deleted file mode 100644 (file)
index e13e1ec..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-{% spaceless %}
-
-{% load i18n %}
-{% load pagination_tags %}
-
-<table class="wlfund">
-
-{% for funding in fundings %}
-    <tr class="funding-plus">
-        <td class="oneline">{{ funding.payed_at.date }}</td>
-        <td>
-            {% if funding.name %}
-                {{ funding.name }}
-            {% else %}
-                <em>{% trans "Anonymous" %}</em>
-            {% endif %}
-        </td>
-        <td>{{ funding.amount }}&nbsp;zł</td>
-        <td>&nbsp;
-            {% for perk in funding.perks.all %}
-                {{ perk.name }}{% if not forloop.last %},{% endif %}
-            {% endfor %}
-        </td>
-{% endfor %}
-</table>
-
-{% endspaceless %}{% paginate %}
-