Merge branch 'reflow'
[wolnelektury.git] / apps / funding / templates / funding / offer_detail.html
diff --git a/apps/funding/templates/funding/offer_detail.html b/apps/funding/templates/funding/offer_detail.html
deleted file mode 100755 (executable)
index f3484ed..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-{% extends "base.html" %}
-{% load url from future %}
-{% load i18n %}
-{% load funding_tags %}
-{% load pagination_tags %}
-
-
-{% block titleextra %}{{ object }}{% endblock %}
-
-
-{% block body %}
-
-<h1>{{ object }}</h1>
-
-<div class="normal-text">{{ object.description|safe }}</div>
-
-{% funding object %}
-<div class="white-box">
-    {% offer_status object %}
-    {% offer_status_more object %}
-
-    {% if object.is_current %}
-        <div class="normal-text">
-            <h3>{% trans "Support the publication" %}</h3>
-            <form action="" method="post">
-                {% csrf_token %}
-                <table>
-                {{ form.as_table }}
-                <tr><td></td><td><button class="honking" type="submit">{% trans "Donate!" %}</button></td></tr>
-                </table>
-            </form>
-        </div>
-    {% endif %}
-
-    <p class="normal-text"><a href="{% url 'funding' %}">{% trans "See all fundraisers." %}</a></p>
-
-</div>
-
-
-<h2>{% trans "Supporters" %}:</h2>
-
-<div class="white-box normal-text">
-{% with object.funding_payed.all as fundings %}
-    
-    <table class="wlfund">
-    {% autopaginate fundings 10 %}
-    {% for funding in fundings %}
-        <tr class="funding-plus">
-            <td><div>{{ funding.payed_at.date }}</div></td>
-            <td><div>
-                {% if funding.name %}
-                    {{ funding.name }}
-                {% else %}
-                    <em>{% trans "Anonymous" %}</em>
-                {% endif %}
-            </div></td>
-            <td><div>{{ funding.amount }} zł</div></td>
-            <td><div>
-                {% for perk in funding.perks.all %}
-                    {{ perk.name }}{% if not forloop.last %},{% endif %}
-                {% endfor %}&nbsp;
-            </div></td>
-    {% endfor %}
-    </table>
-    
-    {% paginate %}
-{% endwith %}
-</div>
-
-{% endblock %}