{% extends "layout.html" %} {% block title %}
Combine this with your Stripe dashboard for the full effect.
You're set up and ready to go! This is your admin panel. Next steps:
templates
directory - you can copy and paste any of these templates into the
overrides
directory and change it to suit your needs.
Project Name | One-time | Recurring (active) | Recurring (total paid) | |
---|---|---|---|---|
{{ project.name }} | ${{ "{:.2f}".format(one_times(project) / 100) }} | ${{ "{:.2f}".format(recurring(project) / 100) }} | ${{ "{:.2f}".format(recurring_ever(project) / 100) }} | |
(not specified) | ${{ "{:.2f}".format(unspecified_one_times / 100) }} | ${{ "{:.2f}".format(unspecified_recurring / 100) }} | ${{ "{:.2f}".format(unspecified_recurring_ever / 100) }} | |
Total | ${{ "{:.2f}".format(total_one_time / 100) }} | ${{ "{:.2f}".format(total_recurring / 100) }} | ${{ "{:.2f}".format(total_recurring_ever / 100) }} |
Donors will not be given a choice of project unless you have at least 2.
Date | Project | Comment | Amount | Type | Payments | |
---|---|---|---|---|---|---|
{{ donation.created.strftime("%Y-%m-%d") }} | {{ donation.user.email }} | {{ 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" }} {{ "(cancelled)" if not donation.active else "" }} | {{donation.payments}} |