Refactored checkout steps

This commit is contained in:
Raphael Michel
2015-10-04 17:14:53 +02:00
parent 2e9157cbef
commit 4c6b292968
15 changed files with 549 additions and 348 deletions

View File

@@ -1,10 +1,10 @@
from django.db.models import Count
from django.views.generic import TemplateView
from pretix.presale.views import CartDisplayMixin, EventViewMixin
from pretix.presale.views import CartMixin, EventViewMixin
class EventIndex(EventViewMixin, CartDisplayMixin, TemplateView):
class EventIndex(EventViewMixin, CartMixin, TemplateView):
template_name = "pretixpresale/event/index.html"
def get_context_data(self, **kwargs):