+ {% if any(recurring(user)) %}
+
Monthly Donations
+
+
+
+ |
+ Date |
+ Amount |
+ Project |
+
+
+
+ {% for donation in recurring(user) %}
+
+
+
+ |
+ {{ donation.created.strftime("%Y-%m-%d") }} |
+ ${{ "{:.2f}".format(donation.amount / 100) }} |
+ {{ donation.project.name if donation.project else "Not specified" }} |
+
+ {% endfor %}
+
+
+ {% endif %}
+ {% if any(one_times(user)) %}
+
One-time Donations
@@ -28,5 +57,6 @@
{% endfor %}
+ {% endif %}
{% endblock %}
diff --git a/templates/post-donation-message.html b/templates/post-donation-message.html
index 229f4f6..ff98cdb 100644
--- a/templates/post-donation-message.html
+++ b/templates/post-donation-message.html
@@ -1,2 +1,2 @@
You'll get an email when your money is going to be put to work.
+