import os from django.conf import settings from postgresqleu.util.misc.baseinvoice import BaseInvoice,BaseRefund class PGDUBase(object): logo = os.path.join(settings.PROJECT_ROOT, '../media/img/PostgreSQL_logo.1color_blue.300x300.png') headertext = """PostgreSQL Down Under Unit 8 66 Bent Street, McKinnon VIC 3204 Australia """ sendertext = """Your contact: Randal McDonnell Function: PostgreSQL Down Under Treasurer E-mail: treasurer@pgdu.org""" bankinfotext = """Contact treasurer@pgdu.org """ paymentterms = """ """ class PGDUInvoice(PGDUBase, BaseInvoice): pass class PGDURefund(PGDUBase, BaseRefund): pass