diff --git a/templates/admin.html b/templates/admin.html
index 9d8024c..d67ba11 100644
--- a/templates/admin.html
+++ b/templates/admin.html
@@ -106,7 +106,10 @@
{{ donation.project.name if donation.project else "" }} |
{{ donation.comment if donation.comment else "" }} |
${{ "{:.2f}".format(donation.amount / 100) }} |
- {{ "Once" if str(donation.type) == "DonationType.one_time" else "Monthly" }} |
+
+ {{ "Once" if str(donation.type) == "DonationType.one_time" else "Monthly" }}
+ {{ "(cancelled)" if not donation.active else "" }}
+ |
{% endfor %}