Provides a framework for accepting donations
Project description
This package provides the base pieces required to accept donations on an Armstrong site.
armstrong.apps.donations provides everything you need to accept donations except templates. It defaults to Authorize.net for its payment processing, but all payment processing can be configured.
Usage
armstrong.apps.donations ships with a default set of URL routes that may work for you without any tweaking. Simply add the URL configuration you would like and include armstrong.apps.donations.urls. For example, you could configure it to respond to /donate/ like this inside your main urls module.
# This assumes you already have a urlpatterns variable urlpatterns += patterns('', url(r'^/donate/', include('armstrong.apps.donations.urls')), )
This adds a DonationFormView view for you at /donate/ and a thanks page via ThanksView at /donate/thanks/. You need to add templates for each. The default templates are:
armstrong/donations/donation.html
armstrong/donations/thanks.html
You need to use the donation_form context value to display the DonationForm inside the DonationFormView.
Installation & Configuration
You can install the latest release of armstrong.apps.donations using pip:
pip install armstrong.apps.donations
Make sure to add armstrong.apps.donations and armstrong.apps.content to your INSTALLED_APPS. You can add this however you like. This works as a copy-and-paste solution:
INSTALLED_APPS += ["armstrong.apps.donations", ]
Once installed, you have to run either syncdb, or migrate if you are using South.
You can configure the payment backend using the ARMSTRONG_DONATIONS_BACKEND setting. It defaults to:
ARMSTRONG_DONATIONS_BACKEND = "armstrong.apps.donations.backends.AuthorizeNetBackend"
This utilizes armstrong.utils.backends for its backend processing.
State of Project
Armstrong is an open-source news platform that is freely available to any organization. It is the result of a collaboration between the Texas Tribune and Bay Citizen, and a grant from the John S. and James L. Knight Foundation.
To follow development, be sure to join the Google Group.
armstrong.apps.donations is part of the Armstrong project. You’re probably looking for that.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for armstrong.apps.donations-1.2.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68e0ce61ad8d4c21d90ceb7ae1cc8d97a1c65d908848270a18afde580ef6e4b6 |
|
MD5 | e332f4f275bea484e68d6e9365f1354e |
|
BLAKE2b-256 | a9babe243e88795a8a0b5109f0fccbc857d6a161624e662b1a5787d3da194234 |