forked from CGM_Public/pretix_original
Add manual payments
This commit is contained in:
21
src/pretix/plugins/manualpayment/__init__.py
Normal file
21
src/pretix/plugins/manualpayment/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
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'
|
||||
Reference in New Issue
Block a user