Merge branch 'reflow'
[wolnelektury.git] / apps / funding / templates / funding / offer_list.html
diff --git a/apps/funding/templates/funding/offer_list.html b/apps/funding/templates/funding/offer_list.html
deleted file mode 100755 (executable)
index 44cd828..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "base.html" %}
-{% load url from future %}
-{% load i18n %}
-{% load funding_tags %}
-
-{% block titleextra %}{% trans "Support Wolne Lektury" %}{% endblock %}
-
-{% block body %}
-<h1>{% trans "Support Wolne Lektury" %}</h1>
-
-<ul class="plain">
-{% for funding in object_list %}
-    <li class="white-box funding-{% if funding.is_current %}current{% else %}stale{% endif %}">
-        <p class="normal-text">{{ funding.start }} – {{ funding.end }}
-        {% if not funding.is_current %}
-            ({% trans "funding closed" %})
-        {% endif %}
-        </p>
-        {% funding funding link=1 %}
-        {% offer_detail_head funding %}
-    </li>
-{% endfor %}
-</ul>
-
-{% endblock %}