{% 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 | |
---|---|---|---|
{{ project.name }} | ${{ "{:.2f}".format(one_times(project) / 100) }} | ${{ "{:.2f}".format(recurring(project) / 100) }} | |
(not specified) | ${{ "{:.2f}".format(unspecified_one_times / 100) }} | ${{ "{:.2f}".format(unspecified_recurring / 100) }} |
Donors will not be given a choice of project unless you have at least 2.
Project | Comment | Amount | Type | |
---|---|---|---|---|
{{ 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 "" }} |