Add manual payments

This commit is contained in:
Raphael Michel
2018-06-24 16:14:29 +02:00
parent 5e7027647a
commit 0d1643da66
5 changed files with 135 additions and 0 deletions

View 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'