Using cache middleware instead of various caching micro-strategies,
[wolnelektury.git] / apps / funding / templates / funding / tags / offer_status.html
diff --git a/apps/funding/templates/funding/tags/offer_status.html b/apps/funding/templates/funding/tags/offer_status.html
deleted file mode 100755 (executable)
index 24a5fcd..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-{% load i18n %}
-
-{% if offer.is_current %}
-    {% if offer.is_win %}
-        <p>
-            {% blocktrans with due=offer.due end=offer.end %}The fundraiser
-            ends on {{ end }}. The book will be published by {{ due }}.{% endblocktrans %}
-        </p>
-    {% else %}
-    <p>
-        {% blocktrans with due=offer.due end=offer.end %}If the target is met
-        by {{ end }}, this book will be published by {{ due }}.{% endblocktrans %}
-    </p>
-    {% endif %}
-{% else %}
-    {% if offer.is_win %}
-        <p>
-            {% trans "Full amount was successfully raised!" %}
-        </p>
-    {% else %}
-        <p>
-            {% trans "The amount needed was not raised." %}
-        </p>
-    {% endif %}
-{% endif %}