from postgresqleu.util.misc.baseinvoice import BaseInvoice, BaseRefund
-class PGEUBase(object):
+class SELBase(object):
logo = os.path.join(settings.PROJECT_ROOT, '../media/img/PostgreSQL_logo.1color_blue.300x300.png')
headertext = """Slonik Enterprises Ltd.
128 City Road
"""
-class PGEUInvoice(PGEUBase, BaseInvoice):
+class SELInvoice(SELBase, BaseInvoice):
pass
-class PGEURefund(PGEUBase, BaseRefund):
+class SELRefund(SELBase, BaseRefund):
pass