forked from CGM_Public/pretix_original
22 lines
607 B
Python
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'
|