mirror of
https://github.com/pretix/pretix-servicefees.git
synced 2024-11-10 17:24:21 +01:00
20 lines
572 B
Python
20 lines
572 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy
|
|
|
|
|
|
class PluginApp(AppConfig):
|
|
name = 'pretix_servicefees'
|
|
verbose_name = 'pretix Service Fees'
|
|
|
|
class PretixPluginMeta:
|
|
name = ugettext_lazy('pretix Service Fees')
|
|
author = 'Raphael Michel'
|
|
description = ugettext_lazy('This plugin allows to charge a service fee on all non-free orders.')
|
|
visible = True
|
|
version = '1.2.0'
|
|
|
|
def ready(self):
|
|
from . import signals # NOQA
|
|
|
|
|
|
default_app_config = 'pretix_servicefees.PluginApp'
|