upgrade to new pretix, remove download, add page links

This commit is contained in:
_Bastler
2023-12-15 22:09:23 +01:00
parent f106e3ce4f
commit d1bd82080a
25 changed files with 528 additions and 137 deletions
+26 -12
View File
@@ -1,16 +1,30 @@
from django import forms
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _
from pretix.base.forms import SettingsForm
class PretixDigitalItemsSettingsForm(SettingsForm):
digitalitems_token_mail_format = forms.CharField(
label=_("Token mail format"),
help_text=_("This text will be included for every token in an email. Available placeholder are {name} for the item name and {secret} for the token code."),
widget=forms.TextInput(attrs={'placeholder': '{name}: {secret}'}),
required=False)
digitalitems_token_export_format = forms.CharField(
label=_("Token export format"),
help_text=_("This text will be included for every token in a TXT export. Available placeholder are {name} for the item name and {secret} for the token code."),
widget=forms.TextInput(attrs={'placeholder': '{name}: {secret}'}),
required=False)
class PretixDigitalItemsSettingsForm(SettingsForm):
digitalitems_token_url_format = forms.CharField(
label=_("Token url format"),
help_text=_(
"This should return an url to link to. Available placeholder are {name} for the item name and {secret} for the token code."
),
widget=forms.TextInput(attrs={"placeholder": "http://localhost?secret={secret}"}),
required=False,
)
digitalitems_token_mail_format = forms.CharField(
label=_("Token mail format"),
help_text=_(
"This text will be included for every token in an email. Available placeholder are {name} for the item name and {secret} for the token code."
),
widget=forms.TextInput(attrs={"placeholder": "{name}: {secret}"}),
required=False,
)
digitalitems_token_export_format = forms.CharField(
label=_("Token export format"),
help_text=_(
"This text will be included for every token in a TXT export. Available placeholder are {name} for the item name and {secret} for the token code."
),
widget=forms.TextInput(attrs={"placeholder": "{name}: {secret}"}),
required=False,
)