forked from CGM_Public/pretix_original
Re-introduce plugin categories
This commit is contained in:
@@ -12,6 +12,7 @@ class BadgesApp(AppConfig):
|
||||
name = _("Badges")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
category = "FEATURE"
|
||||
description = _("This plugin allows you to generate badges or name tags for your attendees.")
|
||||
|
||||
def ready(self):
|
||||
|
||||
@@ -12,6 +12,7 @@ class BankTransferApp(AppConfig):
|
||||
class PretixPluginMeta:
|
||||
name = _("Bank transfer")
|
||||
author = _("the pretix team")
|
||||
category = 'PAYMENT'
|
||||
version = version
|
||||
description = _("This plugin allows you to receive payments " +
|
||||
"via bank transfer ")
|
||||
|
||||
@@ -12,6 +12,7 @@ class ManualPaymentApp(AppConfig):
|
||||
name = _("Manual payment")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
category = 'PAYMENT'
|
||||
description = _("This plugin adds a customizable payment method for manual processing.")
|
||||
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ class PaypalApp(AppConfig):
|
||||
name = _("PayPal")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
category = 'PAYMENT'
|
||||
description = _("This plugin allows you to receive payments via PayPal")
|
||||
|
||||
def ready(self):
|
||||
|
||||
@@ -13,6 +13,7 @@ class PretixdroidApp(AppConfig):
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
visible = True
|
||||
category = 'INTEGRATION'
|
||||
description = _("This plugin allows you to use the pretixdroid and pretixdesk apps for your event.")
|
||||
|
||||
def ready(self):
|
||||
|
||||
@@ -13,6 +13,7 @@ class ReportsApp(AppConfig):
|
||||
name = _("Report exporter")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
category = 'FORMATS'
|
||||
description = _("This plugin allows you to generate printable reports about your sales.")
|
||||
|
||||
def ready(self):
|
||||
|
||||
@@ -12,6 +12,7 @@ class ReturnURLApp(AppConfig):
|
||||
name = _("Redirection from order page")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
category = 'API'
|
||||
description = _("This plugin allows to link to payments and redirect back afterwards. This is useful in "
|
||||
"combination with our API.")
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ class SendMailApp(AppConfig):
|
||||
class PretixPluginMeta:
|
||||
name = _("Send out emails")
|
||||
author = _("the pretix team")
|
||||
category = 'FEATURE'
|
||||
version = version
|
||||
description = _("This plugin allows you to send out emails " +
|
||||
"to all your customers.")
|
||||
|
||||
@@ -12,6 +12,7 @@ class StatisticsApp(AppConfig):
|
||||
name = _("Statistics")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
category = 'FEATURE'
|
||||
description = _("This plugin shows you various statistics.")
|
||||
|
||||
def ready(self):
|
||||
|
||||
@@ -13,6 +13,7 @@ class StripeApp(AppConfig):
|
||||
name = _("Stripe")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
category = 'PAYMENT'
|
||||
description = _("This plugin allows you to receive credit card payments " +
|
||||
"via Stripe")
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ class TicketOutputPdfApp(AppConfig):
|
||||
name = _("PDF ticket output")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
category = 'FORMATS'
|
||||
description = _("This plugin allows you to print out tickets as PDF files")
|
||||
|
||||
def ready(self):
|
||||
|
||||
Reference in New Issue
Block a user