blob: 945a008e93661494a8b0ce7a19f80a56b36e77aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import os
SKIN_APPS = [
]
SITEBASE = "https://pgday.uk"
ORG_NAME = "PostgreSQL Europe"
ORG_SHORTNAME = "PGUK"
# Modules
ENABLE_PG_COMMUNITY_AUTH = True
ENABLE_MEMBERSHIP = False
ENABLE_ELECTIONS = False
ENABLE_AUTO_ACCOUNTING = True
ACCOUNTING_MANUAL_INCOME_ACCOUNT = 1900
ACCOUNTING_CONFREG_ACCOUNT = 3003
ACCOUNTING_CONFSPONSOR_ACCOUNT = 3004
# Emails
DEFAULT_EMAIL = "webmaster@pgday.uk"
SERVER_EMAIL = "webmaster@pgday.uk"
TREASURER_EMAIL = "treasurer@slonik.enterprises"
INVOICE_SENDER_EMAIL = "treasurer@slonik.enterprises"
INVOICE_NOTIFICATION_RECEIVER = "treasurer@slonik.enterprises"
SCHEDULED_JOBS_EMAIL = "webmaster@pgday.uk"
# Ugh
EU_VAT = False
EU_VAT_HOME_COUNTRY = "GB"
EU_VAT_VALIDATE = False
# Invoice
INVOICE_PDF_BUILDER = 'selinvoices.SELInvoice'
REFUND_PDF_BUILDER = 'selinvoices.SELRefund'
|