From f72eb4af907e78ca42bd43bec45427e29cd2c620 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 18 Aug 2015 18:21:38 +0200 Subject: [PATCH 1/2] Fixed that mail_prefix was a required setting --- src/pretix/control/forms/event.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index bc3bbc65e0..b70eee4b91 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -153,7 +153,8 @@ class EventSettingsForm(SettingsForm): mail_prefix = forms.CharField( label=_("Subject prefix"), help_text=_("This will be prepended to the subject of all outgoing emails. This could be a short form of " - "your event name.") + "your event name."), + required=False ) mail_from = forms.EmailField( label=_("Sender address"), From 57d0b8e2af750fb71e8a581a98633095531ec832 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 18 Aug 2015 19:54:43 +0200 Subject: [PATCH 2/2] Updated project status in README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da9b22d31a..a58f29ec5d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,10 @@ Reinventing ticket presales, one bit at a time. Project status -------------- -We are really working on it, but it will take a while. Currently, this is as unstable as it can be. Everything can change daily. Try it, hack on it, write pull requests, write documentation, translate it but don't use it and don't put data in it. +The basic features are present and sufficiently stable. pretix has been in use for one event and +sold a few hundred tickets so far. However, many features are missing and the admin UI is far from +being complete, so we **do not recommend** production use yet. + Maintainer ----------