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 da50f13..0000000
+++ /dev/null
@@ -1,85 +0,0 @@
-{% extends "base.html" %}
-{% load url from future %}
-{% load i18n %}
-{% load funding_tags %}
-{% load pagination_tags %}
-{% load fnp_share %}
-
-
-{% block titleextra %}{{ object }}{% endblock %}
-
-{% block metadescription %}Wesprzyj kolejną publikację Wolnych Lektur!{% endblock %}
-
-
-{% block body %}
-
-<h1>{{ object }}</h1>
-
-<div class="normal-text">{{ object.description|safe }}</div>
-
-{% funding object %}
-<div class="white-box">
-    <div class="normal-text">
-    {% offer_status object %}
-    {% offer_status_more object %}
-    <p><a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.</p>
-    </div>
-    
-
-    {% 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 type="submit" style="border: none; background: none; cursor: pointer">
-                    <img alt="{% trans 'Donate!' %}" src="http://static.payu.com/pl/standard/partners/buttons/payu_account_button_01.png" />
-                    </button>
-                    </td></tr>
-                </table>
-            </form>
-        </div>
-
-        {% url 'funding_current' object.slug as current %}
-        <p class="normal-text">{% trans "Tell your friends!" %}</p>
-        <p class="share">{% share current _("Support Wolne Lektury!") "big" %}</p>
-    {% 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 %}