diff options
author | Stephen Frost | 2019-05-31 20:33:23 +0000 |
---|---|---|
committer | Stephen Frost | 2019-05-31 20:33:23 +0000 |
commit | cf62f08bb4a578dd8815e1fe5f30e790021f41d9 (patch) | |
tree | 152a2172f5d6ffa5d5e59596d0fd14f0237d8dc4 /code/skin_settings.py | |
parent | 66098881a375a2690fa3439960e42332c51af88c (diff) |
Add code directory for PgDU
Diffstat (limited to 'code/skin_settings.py')
-rw-r--r-- | code/skin_settings.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/code/skin_settings.py b/code/skin_settings.py new file mode 100644 index 0000000..0de574e --- /dev/null +++ b/code/skin_settings.py @@ -0,0 +1,38 @@ +SERVER_EMAIL="webmaster@pgdu.org" + +# Local time zone for this installation. Choices can be found here: +# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name +# although not all choices may be available on all operating systems. +# If running in a Windows environment this must be set to the same as your +# system time zone. +TIME_ZONE = 'Australia/Melbourne' + +INVOICE_SENDER_EMAIL="treasurer@pgdu.org" +MEMBERSHIP_SENDER_EMAIL="treasurer@pgdu.org" + +# Organization name +ORG_NAME="PostgreSQL Down Under" +ORG_SHORTNAME="PgDU" + +# Treasurer email address +TREASURER_EMAIL="treasurer@pgdu.org" + +ENABLE_PG_COMMUNITY_AUTH = True + +# Currency parameter +CURRENCY_ABBREV='AUD' +CURRENCY_SYMBOL='$' +CURRENCY_ISO='AUD' + +# Module to build PDF invoices +INVOICE_PDF_BUILDER='pgduinvoices.PGDUInvoice' +REFUND_PDF_BUILDER='pgduinvoices.PGDURefund' + +# Base URLs for generating absolute URLs +SITEBASE="https://pgdu.org" + +# Account numbers used for auto-accounting +ENABLE_AUTO_ACCOUNTING=True +ENABLE_MEMBERSHIP=True +ENABLE_ELECTIONS=True + |