Files
pretix_cgo/src/pretix/plugins/manualpayment/__init__.py
2018-06-24 16:14:29 +02:00

22 lines
607 B
Python

from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
class ManualPaymentApp(AppConfig):
name = 'pretix.plugins.manualpayment'
verbose_name = _("Manual payment")
class PretixPluginMeta:
name = _("Manual payment")
author = _("the pretix team")
version = version
description = _("This plugin adds a customizable payment method for manual processing.")
def ready(self):
from . import signals # NOQA
default_app_config = 'pretix.plugins.manualpayment.ManualPaymentApp'